forked from mirrors/nixpkgs
10 lines
193 B
Nix
10 lines
193 B
Nix
|
{ stdenv, appleDerivation }:
|
||
|
|
||
|
appleDerivation {
|
||
|
phases = [ "unpackPhase" "installPhase" ];
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p $out/include/
|
||
|
cp removefile.h checkint.h $out/include/
|
||
|
'';
|
||
|
}
|