1ae14203fc
GitOrigin-RevId: 68398d2dd50efc2d878bf0f83bbc8bc323b6b0e0
14 lines
340 B
Nix
14 lines
340 B
Nix
{ appleDerivation, lib, headersOnly ? false }:
|
|
|
|
appleDerivation {
|
|
installPhase = lib.optionalString headersOnly ''
|
|
mkdir -p $out/include/hfs
|
|
cp core/*.h $out/include/hfs
|
|
'';
|
|
|
|
meta = {
|
|
# Seems nobody wants its binary, so we didn't implement building.
|
|
broken = !headersOnly;
|
|
platforms = lib.platforms.darwin;
|
|
};
|
|
}
|