summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/Libm/default.nix
blob: 6e6712f375e65cc1148040242e9c26dcc02a3631 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ 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
  '';
}