summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/libclosure/default.nix
blob: 976658b7e5ddcbf239487af533f37ebecb6a1eda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ appleDerivation', stdenvNoCC }:

appleDerivation' stdenvNoCC {
  installPhase = ''
    mkdir -p $out/include
    cp *.h $out/include/
  '';

  appleHeaders = ''
    Block.h
    Block_private.h
  '';
}