xcbuild: add name to platform.nix

This commit is contained in:
Matthew Bauer 2016-11-09 23:07:24 -06:00
parent 9f46587841
commit 25485ece2a
No known key found for this signature in database
GPG key ID: E04D0AD9469141C3
6 changed files with 6 additions and 5 deletions

View file

@ -5,6 +5,7 @@ let
Info = {
CFBundleIdentifier = platformName;
Type = "Platform";
Name = "macosx";
};
Version = {

View file

@ -10,7 +10,7 @@ appleDerivation {
# temporary install phase until xcodebuild has "install" support
installPhase = ''
mkdir -p $out/bin/
install adv_cmds-*/Build/Products/Release-*/* $out/bin/
install adv_cmds-*/Build/Products/Release/* $out/bin/
for n in 1 8; do
mkdir -p $out/share/man/man$n

View file

@ -6,7 +6,7 @@ appleDerivation rec {
# temporary install phase until xcodebuild has "install" support
installPhase = ''
mkdir -p $out/bin/
install basic_cmds-*/Build/Products/Release-*/* $out/bin/
install basic_cmds-*/Build/Products/Release/* $out/bin/
for n in 1; do
mkdir -p $out/share/man/man$n

View file

@ -11,7 +11,7 @@ appleDerivation rec {
# temporary install phase until xcodebuild has "install" support
installPhase = ''
mkdir -p $out/bin/
install developer_cmds-*/Build/Products/Release-*/* $out/bin/
install developer_cmds-*/Build/Products/Release/* $out/bin/
for n in 1; do
mkdir -p $out/share/man/man$n

View file

@ -15,7 +15,7 @@ appleDerivation rec {
# temporary install phase until xcodebuild has "install" support
installPhase = ''
mkdir -p $out/bin/
install network_cmds-*/Build/Products/Release-*/* $out/bin/
install network_cmds-*/Build/Products/Release/* $out/bin/
for n in 1 5; do
mkdir -p $out/share/man/man$n

View file

@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out/bin
cp ./contacts-*/Build/Products/Default-*/contacts $out/bin
cp ./contacts-*/Build/Products/Default/contacts $out/bin
'';
NIX_LDFLAGS = " -F${Foundation}/Library/Frameworks/ -F${AddressBook}/Library/Frameworks/";