about summary refs log tree commit diff
path: root/pkgs/tools/security/bash-supergenpass
diff options
context:
space:
mode:
authorFrancesco Gazzetta <fgaz@fgaz.me>2021-02-11 15:16:45 +0100
committerFrancesco Gazzetta <fgaz@fgaz.me>2021-02-11 15:16:45 +0100
commitc584a69088204091a3dfcb78c4e0e9142dff7f53 (patch)
tree713e9e617e03c0ac53b00da27e4129b8288f4af9 /pkgs/tools/security/bash-supergenpass
parent93498b15264bb796d4ff3a08971b96847cdd9391 (diff)
bash-supergenpass: fix unstableGitUpdater call
It couldn't get the url from the fetchFromGitHub attrset
Diffstat (limited to 'pkgs/tools/security/bash-supergenpass')
-rw-r--r--pkgs/tools/security/bash-supergenpass/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/security/bash-supergenpass/default.nix b/pkgs/tools/security/bash-supergenpass/default.nix
index 9276c9b116773..6101f1ed42bdf 100644
--- a/pkgs/tools/security/bash-supergenpass/default.nix
+++ b/pkgs/tools/security/bash-supergenpass/default.nix
@@ -24,7 +24,9 @@ stdenv.mkDerivation {
     wrapProgram "$out/bin/supergenpass" --prefix PATH : "${lib.makeBinPath [ openssl coreutils gnugrep ]}"
   '';
 
-  passthru.updateScript = unstableGitUpdater { };
+  passthru.updateScript = unstableGitUpdater {
+    url = "https://github.com/lanzz/bash-supergenpass.git";
+  };
 
   meta = with lib; {
     description = "Bash shell-script implementation of SuperGenPass password generation";