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

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