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

appleDerivation {
  dontBuild = true;

  installPhase = ''
    export DSTROOT=$out
    make install
  '';

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