13 lines
268 B
Nix
13 lines
268 B
Nix
|
{ stdenv, appleDerivation }:
|
||
|
|
||
|
appleDerivation {
|
||
|
phases = [ "unpackPhase" "installPhase" ];
|
||
|
|
||
|
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
|
||
|
'';
|
||
|
}
|