2020-04-24 23:36:52 +00:00
|
|
|
{ appleDerivation, lib, headersOnly ? false }:
|
|
|
|
|
|
|
|
appleDerivation {
|
|
|
|
installPhase = lib.optionalString headersOnly ''
|
|
|
|
mkdir -p $out/include/hfs
|
|
|
|
cp core/*.h $out/include/hfs
|
|
|
|
'';
|
2021-01-17 00:15:33 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
# Seems nobody wants its binary, so we didn't implement building.
|
|
|
|
broken = !headersOnly;
|
|
|
|
platforms = lib.platforms.darwin;
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|