blob: f804ab79d33212ffd97efce483f4950bd96f85f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
{ substituteAll
, callPackage
}:
let
sigtool = callPackage ./sigtool.nix {};
in substituteAll {
src = ./sign-apphost.proj;
codesign = "${sigtool}/bin/codesign";
}
|