From 1547a6c4a802ea04ec4f17a046c9403482de4f34 Mon Sep 17 00:00:00 2001 From: Markus Theil Date: Wed, 5 Jul 2023 13:24:50 +0200 Subject: jitterentropy: disable upstream install strip This install strip is later done through nixpkgs and is not needed. Furthermore it failed for me when cross compiling on x86-64 to aarch64. Signed-off-by: Markus Theil --- pkgs/development/libraries/jitterentropy/default.nix | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pkgs/development/libraries/jitterentropy') diff --git a/pkgs/development/libraries/jitterentropy/default.nix b/pkgs/development/libraries/jitterentropy/default.nix index f4fd019e3f0..edf46fa4f51 100644 --- a/pkgs/development/libraries/jitterentropy/default.nix +++ b/pkgs/development/libraries/jitterentropy/default.nix @@ -16,7 +16,10 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; hardeningDisable = [ "fortify" ]; # avoid warnings + # prevent jitterentropy from builtin strip to allow controlling this from the derivation's + # settings. Also fixes a strange issue, where this strip may fail when cross-compiling. installFlags = [ + "INSTALL_STRIP=install" "PREFIX=${placeholder "out"}" ]; -- cgit 1.4.1