12 lines
215 B
Nix
12 lines
215 B
Nix
{ appleDerivation }:
|
|
|
|
appleDerivation {
|
|
installPhase = ''
|
|
mkdir -p $out/include
|
|
|
|
cp Source/Intel/math.h $out/include
|
|
cp Source/Intel/fenv.h $out/include
|
|
cp Source/complex.h $out/include
|
|
'';
|
|
}
|