about summary refs log tree commit diff
path: root/pkgs/tools/security/genpass
diff options
context:
space:
mode:
authorCyryl PÅ‚otnicki <cyplo@cyplo.net>2021-03-20 10:06:31 +0000
committerCyryl PÅ‚otnicki <cyplo@cyplo.net>2021-03-20 13:40:58 +0000
commitb80db9fa2ea05121f7aef652084fce7b0474678c (patch)
tree7ed038542392c4b98217e7417fd3111ccb839e88 /pkgs/tools/security/genpass
parent9fb26cf0c8cb815768e33011311236d998e0be26 (diff)
genpass: 0.4.9 -> 0.4.12
Diffstat (limited to 'pkgs/tools/security/genpass')
-rw-r--r--pkgs/tools/security/genpass/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/security/genpass/default.nix b/pkgs/tools/security/genpass/default.nix
index 29703ee1fc873..b358507bbae23 100644
--- a/pkgs/tools/security/genpass/default.nix
+++ b/pkgs/tools/security/genpass/default.nix
@@ -7,22 +7,22 @@
 }:
 rustPlatform.buildRustPackage rec {
   pname = "genpass";
-  version = "0.4.9";
+  version = "0.4.12";
 
   src = fetchgit {
     url = "https://git.sr.ht/~cyplo/genpass";
     rev = "v${version}";
-    sha256 = "1dpv2iyd48xd8yw9bmymjjrkhsgmpwvsl5b9zx3lpaaq59ypi9g9";
+    sha256 = "154kprbqc59f06ciz60il4ax299zapwa0hz8vjn25rl4gr5gzn4l";
   };
 
-  cargoSha256 = "1cwxpc3xkw673wiamr4v7clrzwxl8ma1vdr6bw0hixm37gxdxz7x";
+  cargoSha256 = "1nc699n7f732lhzfhsfknay6z3igyiqy5jymm5x815mv9y1vwaj1";
 
   buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation libiconv Security ];
 
   meta = with lib; {
     description = "A simple yet robust commandline random password generator";
     homepage = "https://sr.ht/~cyplo/genpass/";
-    license = licenses.agpl3;
+    license = licenses.agpl3Only;
     maintainers = with maintainers; [ cyplo ];
   };
 }