mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 00:22:13 +00:00
de87138b9a
Also updates xcbuild version. This changes the raw string expressions into nix expressions that are then converted into json by builtins.toJSON. Then, converted to Plist XML by Apple's plutil. Sadly, xcbuild does not support using raw JSON but Apple's plutil does so we just convert the file from JSON to XML using Apple's plutil. The result is not ideal but it looks like all OS X systems have working plutil's. - set mac version to 10.10 - add setup hook.
45 lines
1.3 KiB
Nix
45 lines
1.3 KiB
Nix
{ stdenv, cmake, fetchFromGitHub, zlib, libxml2, libpng, CoreServices, CoreGraphics, ImageIO, ninja }:
|
|
|
|
let
|
|
googletest = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "googletest";
|
|
rev = "43359642a1c16ad3f4fc575c7edd0cb935810815";
|
|
sha256 = "0y4xaah62fjr3isaryc3vfz3mn9xflr00vchdimj8785milxga4q";
|
|
};
|
|
|
|
linenoise = fetchFromGitHub {
|
|
owner = "antirez";
|
|
repo = "linenoise";
|
|
rev = "c894b9e59f02203dbe4e2be657572cf88c4230c3";
|
|
sha256 = "0wasql7ph5g473zxhc2z47z3pjp42q0dsn4gpijwzbxawid71b4w";
|
|
};
|
|
in stdenv.mkDerivation rec {
|
|
name = "xcbuild-${stdenv.lib.substring 0 8 version}";
|
|
version = "0ab861abcc11185a17d59608f96a015752a6fadc";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "facebook";
|
|
repo = "xcbuild";
|
|
rev = version;
|
|
sha256 = "12h0rn8v0js2vph2pwp5wvcrfkj12nz365i5qxw9miyfn4msnz26";
|
|
};
|
|
|
|
prePatch = ''
|
|
rmdir ThirdParty/*
|
|
cp -r --no-preserve=all ${googletest} ThirdParty/googletest
|
|
cp -r --no-preserve=all ${linenoise} ThirdParty/linenoise
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# TODO: instruct cmake not to put it in /usr, rather than cleaning up
|
|
postInstall = ''
|
|
mv $out/usr/* $out
|
|
rmdir $out/usr
|
|
'';
|
|
|
|
buildInputs = [ cmake zlib libxml2 libpng ninja ]
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices CoreGraphics ImageIO ];
|
|
}
|