depot/third_party/nixpkgs/pkgs/os-specific/darwin/apple-source-releases/hfs/default.nix

15 lines
340 B
Nix
Raw Normal View History

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