Skip to content

Commit

Permalink
build(checks/foundry): Enable on x86_64-darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinNikov authored and PetarKirov committed Sep 3, 2024
1 parent 8e11584 commit d8f50ee
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions packages/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,16 @@
// optionalAttrs isLinux {
inherit (inputs'.validator-ejector.packages) validator-ejector;
}
// optionalAttrs (system == "x86_64-linux" || system == "x86_64-darwin") {
foundry = legacyPackages.inputs.ethereum-nix.foundry.override {
inherit (pkgs) rustPlatform;
};
}
// optionalAttrs (system == "x86_64-linux") {
inherit (pkgs) terraform;
inherit (legacyPackages.inputs.terranix) terranix;
inherit (legacyPackages.inputs.dlang-nix) dcd dscanner serve-d dmd ldc;
inherit (legacyPackages.inputs.ethereum-nix) mev-boost nethermind web3signer nimbus-eth2;
foundry = legacyPackages.inputs.ethereum-nix.foundry.override {
rustPlatform = pkgs.rustPlatform;
};
};
};
}

0 comments on commit d8f50ee

Please sign in to comment.