Advance forge NBC worker and Ethereum full nodes
This commit is contained in:
parent
7d84510eac
commit
3402f7dab2
17 changed files with 3066 additions and 414 deletions
|
|
@ -1,5 +1,6 @@
|
|||
{ lib
|
||||
, rustPlatform
|
||||
, rustfmt
|
||||
, stdenv
|
||||
, pkg-config
|
||||
, openssl
|
||||
|
|
@ -14,7 +15,17 @@ let
|
|||
base = baseNameOf path;
|
||||
in
|
||||
# Skip typical build outputs and large scratch dirs.
|
||||
!(base == "target" || base == ".git" || base == ".direnv" || base == "tmp" || base == "node_modules");
|
||||
!(base == "target"
|
||||
|| base == ".git"
|
||||
|| base == ".direnv"
|
||||
|| base == "tmp"
|
||||
|| base == "node_modules"
|
||||
|| base == "out"
|
||||
|| base == "test-results"
|
||||
|| base == "deploy"
|
||||
|| base == "intake"
|
||||
|| base == "cache"
|
||||
|| base == ".tower-minimal");
|
||||
};
|
||||
in
|
||||
rustPlatform.buildRustPackage {
|
||||
|
|
@ -30,6 +41,7 @@ rustPlatform.buildRustPackage {
|
|||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
rustfmt
|
||||
];
|
||||
|
||||
buildInputs =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue