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

appleDerivation {
  installPhase = ''
    mkdir -p $out/include/CommonCrypto
    cp include/* $out/include/CommonCrypto
  '';

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