repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
typioca: 2.7.0 -> 2.8.0
[NixPkgs.git]
/
pkgs
/
os-specific
/
darwin
/
signing-utils
/
default.nix
blob
035ac59b725aee318162094f82461d1e0d9f0551
1
{ stdenvNoCC
2
, sigtool
3
, cctools
4
}:
5
6
let
7
stdenv = stdenvNoCC;
8
in
9
10
stdenv.mkDerivation {
11
name = "signing-utils";
12
13
dontUnpack = true;
14
dontConfigure = true;
15
dontBuild = true;
16
17
installPhase = ''
18
substituteAll ${./utils.sh} $out
19
'';
20
21
# Substituted variables
22
inherit sigtool;
23
codesignAllocate = "${cctools}/bin/${cctools.targetPrefix}codesign_allocate";
24
}