From c584a69088204091a3dfcb78c4e0e9142dff7f53 Mon Sep 17 00:00:00 2001 From: Francesco Gazzetta Date: Thu, 11 Feb 2021 15:16:45 +0100 Subject: [PATCH] bash-supergenpass: fix unstableGitUpdater call It couldn't get the url from the fetchFromGitHub attrset --- pkgs/tools/security/bash-supergenpass/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/security/bash-supergenpass/default.nix b/pkgs/tools/security/bash-supergenpass/default.nix index 9276c9b1167..6101f1ed42b 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";