8505e710e7
Reverts commits bumping to macOS stuff to 10.12: commitec1f78d1cb
. commitd0dc91d24f
. commita1d297374d
. commit425112151d
. commite6f7f2928f
.
13 lines
398 B
Nix
13 lines
398 B
Nix
{ CommonCrypto, appleDerivation, libsecurity_codesigning, libsecurity_utilities, m4 }:
|
|
appleDerivation {
|
|
buildInputs = [
|
|
libsecurity_utilities
|
|
m4
|
|
];
|
|
patchPhase = ''
|
|
patch -p1 < ${./handletemplates.patch}
|
|
unpackFile ${libsecurity_codesigning.src}
|
|
mv libsecurity_codesigning*/lib security_codesigning
|
|
'';
|
|
NIX_CFLAGS_COMPILE = "-I${CommonCrypto}/include/CommonCrypto";
|
|
}
|