12 lines
162 B
Nix
12 lines
162 B
Nix
|
|
{
|
||
|
|
replaceVars,
|
||
|
|
callPackage,
|
||
|
|
}:
|
||
|
|
let
|
||
|
|
sigtool = callPackage ./sigtool.nix { };
|
||
|
|
|
||
|
|
in
|
||
|
|
replaceVars ./sign-apphost.proj {
|
||
|
|
codesign = "${sigtool}/bin/codesign";
|
||
|
|
}
|