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 <theil.markus@gmail.com>
This commit is contained in:
parent
f60a3a0004
commit
1547a6c4a8
1 changed files with 3 additions and 0 deletions
|
@ -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"}"
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue