Fix redlib override
This commit is contained in:
parent
19143134bf
commit
7fe6c24a73
1 changed files with 9 additions and 9 deletions
|
|
@ -16,15 +16,15 @@
|
|||
doCheck = false;
|
||||
src = inputs.redlib;
|
||||
|
||||
env = oldAttrs.env // {
|
||||
BORING_BSSL_INCLUDE_PATH = pkgs.boringssl.dev + "/include";
|
||||
BORING_BSSL_PATH = pkgs.boringssl;
|
||||
RUSTFLAGS = "-L ${pkgs.boringssl}/lib";
|
||||
};
|
||||
|
||||
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [
|
||||
pkgs.rustPlatform.bindgenHook
|
||||
];
|
||||
nativeBuildInputs =
|
||||
(oldAttrs.nativeBuildInputs or [ ])
|
||||
++ (with pkgs; [
|
||||
cmake
|
||||
go
|
||||
perl
|
||||
git
|
||||
rustPlatform.bindgenHook
|
||||
]);
|
||||
|
||||
cargoDeps = pkgs.rustPlatform.fetchCargoVendor {
|
||||
inherit src;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue