lol

ic-keysmith: init at 1.6.0

+24
+22
pkgs/tools/security/ic-keysmith/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "keysmith"; 5 + version = "1.6.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "dfinity"; 9 + repo = "keysmith"; 10 + rev = "v${version}"; 11 + sha256 = "1z0sxirk71yabgilq8v5lz4nd2bbm1xyrd5zppif8k9jqhr6v3v3"; 12 + }; 13 + 14 + vendorSha256 = "1p0r15ihmnmrybf12cycbav80sdj2dv2kry66f4hjfjn6k8zb0dc"; 15 + 16 + meta = with lib; { 17 + description = "Hierarchical Deterministic Key Derivation for the Internet Computer"; 18 + homepage = "https://github.com/dfinity/keysmith"; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ imalison ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 19595 19595 19596 19596 hyprspace = callPackage ../applications/networking/hyprspace { inherit (darwin) iproute2mac; }; 19597 19597 19598 + ic-keysmith = callPackage ../tools/security/ic-keysmith { }; 19599 + 19598 19600 icecream = callPackage ../servers/icecream { }; 19599 19601 19600 19602 icingaweb2-ipl = callPackage ../servers/icingaweb2/ipl.nix { };