nixpkgs/pkgs/os-specific/darwin/apple-source-releases/libutil/default.nix

36 lines
910 B
Nix
Raw Normal View History

{ stdenv, lib, appleDerivation, xcbuildHook
# headersOnly is true when building for libSystem
, headersOnly ? false }:
2015-11-04 18:49:13 +00:00
appleDerivation {
nativeBuildInputs = lib.optional (!headersOnly) xcbuildHook;
prePatch = ''
substituteInPlace tzlink.c \
--replace '#include <xpc/xpc.h>' ""
'';
xcbuildFlags = "-target util";
2015-11-04 18:49:13 +00:00
installPhase = ''
mkdir -p $out/include
'' + lib.optionalString headersOnly ''
2015-11-04 18:49:13 +00:00
cp *.h $out/include
'' + lib.optionalString (!headersOnly)''
mkdir -p $out/lib $out/include
cp Products/Release/*.dylib $out/lib
cp Products/Release/*.h $out/include
# TODO: figure out how to get this to be right the first time around
install_name_tool -id $out/lib/libutil.dylib $out/lib/libutil.dylib
2015-11-04 18:49:13 +00:00
'';
meta = with lib; {
2015-11-04 18:49:13 +00:00
maintainers = with maintainers; [ copumpkin ];
platforms = platforms.darwin;
license = licenses.apsl20;
};
}