nixpkgs/pkgs/os-specific/darwin/apple-source-releases/hfs/default.nix
2021-01-13 19:05:21 +08:00

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;
};
}