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

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