3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/darwin/apple-source-releases/removefile/default.nix
2018-05-06 07:20:03 +00:00

9 lines
148 B
Nix

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