ic-keysmith: init at 1.6.0

launchpad/nixpkgs/master
Ivan Malison 3 years ago
parent 4be510e3ad
commit 11863820b2
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
  1. 22
      pkgs/tools/security/ic-keysmith/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "keysmith";
version = "1.6.0";
src = fetchFromGitHub {
owner = "dfinity";
repo = "keysmith";
rev = "v${version}";
sha256 = "1z0sxirk71yabgilq8v5lz4nd2bbm1xyrd5zppif8k9jqhr6v3v3";
};
vendorSha256 = "1p0r15ihmnmrybf12cycbav80sdj2dv2kry66f4hjfjn6k8zb0dc";
meta = with lib; {
description = "Hierarchical Deterministic Key Derivation for the Internet Computer";
homepage = "https://github.com/dfinity/keysmith";
license = licenses.mit;
maintainers = with maintainers; [ imalison ];
};
}

@ -19595,6 +19595,8 @@ in
hyprspace = callPackage ../applications/networking/hyprspace { inherit (darwin) iproute2mac; };
ic-keysmith = callPackage ../tools/security/ic-keysmith { };
icecream = callPackage ../servers/icecream { };
icingaweb2-ipl = callPackage ../servers/icingaweb2/ipl.nix { };

Loading…
Cancel
Save