1{ lib, buildGoModule, fetchFromGitHub }:
2
3buildGoModule 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}