ec92d4d331
GitOrigin-RevId: 540dccb2aeaffa9dc69bfdc41c55abd7ccc6baa3
11 lines
240 B
Nix
11 lines
240 B
Nix
{ appleDerivation', stdenvNoCC }:
|
|
|
|
appleDerivation' stdenvNoCC {
|
|
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
|
|
'';
|
|
}
|