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