1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

darwin: basic_cmds was installing binaries in the wrong path

This commit is contained in:
Jorge Acereda 2019-01-08 22:43:45 +01:00
parent e012ec5b14
commit 7dafdc1400

View file

@ -15,7 +15,7 @@ appleDerivation rec {
installPhase = ''
for f in Products/Release/*; do
if [ -f $f ]; then
install -D $f $out/usr/bin/$(basename $f)
install -D $f $out/bin/$(basename $f)
fi
done