Skip to content

Commit

Permalink
build(flake/checks): Use ethereum.nix's original foundry derivation
Browse files Browse the repository at this point in the history
Now that our ethereum.nix has a proper CI:
* metacraft-labs/ethereum.nix#36

we're making sure that `foundry`'s derivation is up-to-date:
* metacraft-labs/ethereum.nix#37

With the latest fixes applied, we no longer need to override its `rustPlatform`
parameter, as it's now set to fenix in ethereum.nix.
  • Loading branch information
MartinNikov committed Oct 22, 2024
1 parent 0149057 commit 8b83064
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
inherit (legacyPackages) rustToolchain;
inherit (legacyPackages.inputs.dlang-nix) dub;
inherit (legacyPackages.inputs.nixpkgs) cachix nix nix-eval-jobs nix-fast-build;
inherit (legacyPackages.inputs.ethereum-nix) foundry;
}
// optionalAttrs (system == "x86_64-linux" || system == "aarch64-darwin") {
inherit (legacyPackages.inputs.ethereum-nix) geth;
Expand All @@ -80,9 +81,6 @@
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 8b83064

Please sign in to comment.