about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/darwin/apple-source-releases/removefile/default.nix
blob: 611f445e1ec946e5a510c7341c35682e131d1042 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ appleDerivation', stdenvNoCC }:

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

  appleHeaders = ''
    checkint.h
    removefile.h
  '';
}