summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorIvan Malison <IvanMalison@gmail.com>2021-07-10 14:40:33 -0600
committerIvan Malison <IvanMalison@gmail.com>2021-07-25 15:20:16 -0600
commit11863820b2c4e10917e65c6c1f73cd3891ce97be (patch)
tree604e562d864e093693938e34474f14883c62a5b4 /pkgs/tools
parent4be510e3adfbe630e32e8d92feebaa603270e68f (diff)
downloadnixpkgs-11863820b2c4e10917e65c6c1f73cd3891ce97be.tar
nixpkgs-11863820b2c4e10917e65c6c1f73cd3891ce97be.tar.gz
nixpkgs-11863820b2c4e10917e65c6c1f73cd3891ce97be.tar.bz2
nixpkgs-11863820b2c4e10917e65c6c1f73cd3891ce97be.tar.lz
nixpkgs-11863820b2c4e10917e65c6c1f73cd3891ce97be.tar.xz
nixpkgs-11863820b2c4e10917e65c6c1f73cd3891ce97be.tar.zst
nixpkgs-11863820b2c4e10917e65c6c1f73cd3891ce97be.zip
ic-keysmith: init at 1.6.0
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/ic-keysmith/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/security/ic-keysmith/default.nix b/pkgs/tools/security/ic-keysmith/default.nix
new file mode 100644
index 00000000000..9e480d64d18
--- /dev/null
+++ b/pkgs/tools/security/ic-keysmith/default.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 ];
+  };
+}