Fix redlib override

This commit is contained in:
Henry Hiles 2026-04-16 18:49:07 -04:00
commit 7fe6c24a73
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -16,15 +16,15 @@
doCheck = false; doCheck = false;
src = inputs.redlib; src = inputs.redlib;
env = oldAttrs.env // { nativeBuildInputs =
BORING_BSSL_INCLUDE_PATH = pkgs.boringssl.dev + "/include"; (oldAttrs.nativeBuildInputs or [ ])
BORING_BSSL_PATH = pkgs.boringssl; ++ (with pkgs; [
RUSTFLAGS = "-L ${pkgs.boringssl}/lib"; cmake
}; go
perl
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ git
pkgs.rustPlatform.bindgenHook rustPlatform.bindgenHook
]; ]);
cargoDeps = pkgs.rustPlatform.fetchCargoVendor { cargoDeps = pkgs.rustPlatform.fetchCargoVendor {
inherit src; inherit src;