lockfile-progs: fix cross

`-s` uses `strip` not `$STRIP`

Stripping is done by `fixupPhase`
This commit is contained in:
Artturin 2024-02-13 14:41:12 +02:00
parent 99d7b32e4c
commit 96ce36b286

View File

@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
installPhase = ''
runHook preInstall
mkdir -p $out/bin $out/man/man1
install -s bin/* $out/bin
install bin/* $out/bin
install man/*.1 $out/man/man1
runHook postInstall
'';