17 lines
360 B
Nix
17 lines
360 B
Nix
|
{ stdenv, appleDerivation }:
|
||
|
|
||
|
appleDerivation {
|
||
|
phases = [ "unpackPhase" "installPhase" ];
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|