mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
7bba32a069
If things build fine with `stdenvNoCC`, let them use that. If tools might be prefixed, prepare for that, either by directly splicing or just using the env vars provided by the wrapper setup-hooks. Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{ lib, stdenv, stdenvNoCC, appleDerivation', xcbuildHook
|
|
|
|
# headersOnly is true when building for libSystem
|
|
, headersOnly ? false }:
|
|
|
|
appleDerivation' (if headersOnly then stdenvNoCC else stdenv) {
|
|
nativeBuildInputs = lib.optional (!headersOnly) xcbuildHook;
|
|
|
|
prePatch = ''
|
|
substituteInPlace tzlink.c \
|
|
--replace '#include <xpc/xpc.h>' ""
|
|
'';
|
|
|
|
xcbuildFlags = [ "-target" "util" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/include
|
|
'' + lib.optionalString headersOnly ''
|
|
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
|
|
'';
|
|
|
|
# FIXME: headers are different against headersOnly. And all the headers are NOT in macos, do we really want them?
|
|
# appleHeaders = ''
|
|
# libutil.h
|
|
# mntopts.h
|
|
# tzlink.h
|
|
# wipefs.h
|
|
# '';
|
|
|
|
meta = with lib; {
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
platforms = platforms.darwin;
|
|
license = licenses.apsl20;
|
|
};
|
|
}
|