10 lines
No EOL
172 B
Nix
10 lines
No EOL
172 B
Nix
{ stdenv, appleDerivation }:
|
|
|
|
appleDerivation {
|
|
phases = [ "unpackPhase" "installPhase" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/include
|
|
cp *.h $out/include/
|
|
'';
|
|
} |