git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
12 lines
175 B
Nix
12 lines
175 B
Nix
{
|
|
substituteAll,
|
|
callPackage,
|
|
}:
|
|
let
|
|
sigtool = callPackage ./sigtool.nix { };
|
|
|
|
in
|
|
substituteAll {
|
|
src = ./sign-apphost.proj;
|
|
codesign = "${sigtool}/bin/codesign";
|
|
}
|