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

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

  installPhase = ''
    mkdir $out
    cp -r include $out/include
  '';
}