3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/darwin/apple-source-releases/developer_cmds/default.nix

37 lines
944 B
Nix
Raw Normal View History

{ stdenv, appleDerivation, xcbuildHook, llvmPackages }:
2016-11-10 04:29:57 +00:00
2019-08-13 22:52:01 +01:00
appleDerivation {
nativeBuildInputs = [ xcbuildHook ];
2016-11-10 04:29:57 +00:00
patches = [
# The following copied from
# https://github.com/Homebrew/homebrew-core/commit/712ed3e948868e17f96b7e59972b5f45d4faf688
# is needed to build libvirt.
./rpcgen-support-hyper-and-quad-types.patch
];
postPatch = ''
2016-11-10 04:29:57 +00:00
substituteInPlace rpcgen/rpc_main.c \
--replace "/usr/bin/cpp" "${llvmPackages.clang-unwrapped}/bin/clang-cpp"
2016-11-10 04:29:57 +00:00
'';
# temporary install phase until xcodebuild has "install" support
installPhase = ''
for f in Products/Release/*; do
if [ -f $f ]; then
install -D $f $out/bin/$(basename $f)
fi
done
2016-11-10 04:29:57 +00:00
for n in 1; do
mkdir -p $out/share/man/man$n
install */*.$n $out/share/man/man$n
done
'';
meta = {
platforms = stdenv.lib.platforms.darwin;
maintainers = with stdenv.lib.maintainers; [ matthewbauer ];
};
}