summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/hfs/default.nix
blob: ab294b143d394cf25ed564316759dabceecc8698 (plain) (blame)
1
2
3
4
5
6
7
8
{ appleDerivation, lib, headersOnly ? false }:

appleDerivation {
  installPhase = lib.optionalString headersOnly ''
    mkdir -p $out/include/hfs
    cp core/*.h $out/include/hfs
  '';
}