input-utils: Fix cross-compilation

We actually don't need to `strip` using `install`. Stripping is already
part of the fixup. This ends up being a fix we can apply universally,
but works around an issue where `install` doesn't know about the
prefixed `strip` binary.
This commit is contained in:
Samuel Dionne-Riel 2020-06-05 18:52:47 -04:00
parent 467ce5a9f4
commit 68096cab7f

View File

@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
makeFlags = [
"prefix=$(out)"
"STRIP=-s"
"STRIP="
];
meta = with stdenv.lib; {