3
0
Fork 0
forked from mirrors/nixpkgs

solana-validator: fix eval

This commit is contained in:
superherointj 2022-09-16 12:52:35 -03:00 committed by Yt
parent d9a1414346
commit 74d81b4908

View file

@ -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;