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

appleDerivation {
  phases = [ "unpackPhase" "installPhase" ];

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