28 lines
398 B
Nix
28 lines
398 B
Nix
|
|
{
|
||
|
|
stdenvNoCC,
|
||
|
|
sigtool,
|
||
|
|
cctools,
|
||
|
|
}:
|
||
|
|
|
||
|
|
let
|
||
|
|
stdenv = stdenvNoCC;
|
||
|
|
in
|
||
|
|
|
||
|
|
stdenv.mkDerivation {
|
||
|
|
name = "signing-utils";
|
||
|
|
|
||
|
|
dontUnpack = true;
|
||
|
|
dontConfigure = true;
|
||
|
|
dontBuild = true;
|
||
|
|
|
||
|
|
installPhase = ''
|
||
|
|
substituteAll ${./utils.sh} $out
|
||
|
|
'';
|
||
|
|
|
||
|
|
# Substituted variables
|
||
|
|
env = {
|
||
|
|
inherit sigtool;
|
||
|
|
codesignAllocate = "${cctools}/bin/${cctools.targetPrefix}codesign_allocate";
|
||
|
|
};
|
||
|
|
}
|