darwin: fix more *_cmds derivation

Doh
This commit is contained in:
Matthew Bauer
2019-01-06 22:34:19 -06:00
parent d02bb3c197
commit ed6148726b
4 changed files with 6 additions and 6 deletions
@@ -11,9 +11,8 @@ stdenv.mkDerivation
nativeBuildInputs = [ xcbuildHook ];
installPhase =
''
prog=$(find . -type f -name insert_dylib)
mkdir -p $out/bin
install -m755 $prog $out/bin
install -m755 Products/Release/insert_dylib $out/bin
'';
meta.platforms = stdenv.lib.platforms.darwin;
}