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

appleDerivation {
  installPhase = ''
    mkdir -p $out/include/
    cp removefile.h checkint.h $out/include/
  '';
}