forked from mirrors/nixpkgs
solana-validator: fix eval
This commit is contained in:
parent
d9a1414346
commit
74d81b4908
|
@ -13,7 +13,6 @@
|
||||||
, protobuf
|
, protobuf
|
||||||
, clang
|
, clang
|
||||||
, llvm
|
, llvm
|
||||||
, pkgconfig
|
|
||||||
, openssl
|
, openssl
|
||||||
, libclang
|
, libclang
|
||||||
, rustfmt
|
, rustfmt
|
||||||
|
@ -74,7 +73,7 @@ rustPlatform.buildRustPackage rec {
|
||||||
"-isystem ${libclang.lib}/lib/clang/${lib.getVersion clang}/include";
|
"-isystem ${libclang.lib}/lib/clang/${lib.getVersion clang}/include";
|
||||||
LLVM_CONFIG_PATH = "${llvm}/bin/llvm-config";
|
LLVM_CONFIG_PATH = "${llvm}/bin/llvm-config";
|
||||||
|
|
||||||
nativeBuildInputs = [ clang llvm pkgconfig protobuf rustfmt perl ];
|
nativeBuildInputs = [ clang llvm pkg-config protobuf rustfmt perl ];
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ openssl zlib libclang hidapi ] ++ (lib.optionals stdenv.isLinux [ udev ]);
|
[ openssl zlib libclang hidapi ] ++ (lib.optionals stdenv.isLinux [ udev ]);
|
||||||
strictDeps = true;
|
strictDeps = true;
|
||||||
|
|
Loading…
Reference in a new issue