about summary refs log tree commit diff
path: root/pkgs/tools/security/pwgen
diff options
context:
space:
mode:
authorThilo Uttendorfer <thilo.uttendorfer@allianz.de>2017-10-30 22:19:11 +0100
committerThilo Uttendorfer <thilo.uttendorfer@allianz.de>2017-10-30 22:19:11 +0100
commit61aeeb50ab22e08ec920418107f10ad126f52189 (patch)
treed0919c7c8d67bd03e7eaea84dac7d651ee04fc1c /pkgs/tools/security/pwgen
parent9d74a615ce99da0516d31de25d96ac9c9cd7576e (diff)
pwgen: 2.07 -> 2.08
Diffstat (limited to 'pkgs/tools/security/pwgen')
-rw-r--r--pkgs/tools/security/pwgen/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/tools/security/pwgen/default.nix b/pkgs/tools/security/pwgen/default.nix
index b793219f6497d..79e8fb071b37f 100644
--- a/pkgs/tools/security/pwgen/default.nix
+++ b/pkgs/tools/security/pwgen/default.nix
@@ -1,11 +1,14 @@
-{stdenv, fetchurl}:
+{stdenv, fetchurl, autoreconfHook}:
 stdenv.mkDerivation {
-  name = "pwgen-2.07";
+  name = "pwgen-2.08";
 
   src = fetchurl {
-    url = mirror://sourceforge/pwgen/pwgen-2.07.tar.gz;
-    sha256 = "0mhmw700kkh238fzivcwnwi94bj9f3h36yfh3k3j2v19b0zmjx7b";
+    url = https://github.com/tytso/pwgen/archive/v2.08.tar.gz;
+    sha256 = "8d6e94f28655e61d6126290e3eafad4d17d7fba0d0d354239522a740a270bb2f";
   };
+
+  nativeBuildInputs = [ autoreconfHook ];
+
   meta = {
     description = "Password generator which creates passwords which can be easily memorized by a human";
     platforms = stdenv.lib.platforms.all;