tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ic-keysmith: init at 1.6.0
Ivan Malison
4 years ago
11863820
4be510e3
+24
2 changed files
expand all
collapse all
unified
split
pkgs
tools
security
ic-keysmith
default.nix
top-level
all-packages.nix
+22
pkgs/tools/security/ic-keysmith/default.nix
···
1
1
+
{ lib, buildGoModule, fetchFromGitHub }:
2
2
+
3
3
+
buildGoModule rec {
4
4
+
pname = "keysmith";
5
5
+
version = "1.6.0";
6
6
+
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "dfinity";
9
9
+
repo = "keysmith";
10
10
+
rev = "v${version}";
11
11
+
sha256 = "1z0sxirk71yabgilq8v5lz4nd2bbm1xyrd5zppif8k9jqhr6v3v3";
12
12
+
};
13
13
+
14
14
+
vendorSha256 = "1p0r15ihmnmrybf12cycbav80sdj2dv2kry66f4hjfjn6k8zb0dc";
15
15
+
16
16
+
meta = with lib; {
17
17
+
description = "Hierarchical Deterministic Key Derivation for the Internet Computer";
18
18
+
homepage = "https://github.com/dfinity/keysmith";
19
19
+
license = licenses.mit;
20
20
+
maintainers = with maintainers; [ imalison ];
21
21
+
};
22
22
+
}
+2
pkgs/top-level/all-packages.nix
···
19595
19595
19596
19596
hyprspace = callPackage ../applications/networking/hyprspace { inherit (darwin) iproute2mac; };
19597
19597
19598
19598
+
ic-keysmith = callPackage ../tools/security/ic-keysmith { };
19599
19599
+
19598
19600
icecream = callPackage ../servers/icecream { };
19599
19601
19600
19602
icingaweb2-ipl = callPackage ../servers/icingaweb2/ipl.nix { };