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

appleDerivation {
  phases = [ "unpackPhase" "installPhase" ];

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