summary refs log tree commit diff
path: root/pkgs/development/libraries/jitterentropy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/jitterentropy/default.nix')
-rw-r--r--pkgs/development/libraries/jitterentropy/default.nix3
1 files changed, 3 insertions, 0 deletions
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"}"
   ];