summary refs log blame commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/Libm/default.nix
blob: b409a7347ef21b08e5cf161ed19e53147c718725 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                            
{ 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
  '';
}