aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/os-specific/darwin/apple-source-releases/removefile/default.nix
blob: 0b2c1c9c7dcc3ee762f8314b52f2870ac6fa6977 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ appleDerivation }:

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

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