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

appleDerivation {
  dontBuild = true;

  installFlags = [ "EXPORT_DSTDIR=/include/architecture" ];

  DSTROOT = "$(out)";

  meta = with stdenv.lib; {
    maintainers = with maintainers; [ copumpkin ];
    platforms   = platforms.darwin;
    license     = licenses.apsl20;
  };
}