nixpkgs/pkgs/development/compilers/dotnet/sign-apphost.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
170 B
Nix
Raw Normal View History

{ substituteAll
, callPackage
}:
let
sigtool = callPackage ./sigtool.nix {};
in substituteAll {
src = ./sign-apphost.proj;
codesign = "${sigtool}/bin/codesign";
}