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

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

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