Skip to content

Commit

Permalink
Merge pull request #31005 from sengaya/update-pwgen-2.08
Browse files Browse the repository at this point in the history
pwgen: 2.07 -> 2.08
  • Loading branch information
Mic92 authored Oct 30, 2017
2 parents 7d04f9f + 61aeeb5 commit e2edcca
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions pkgs/tools/security/pwgen/default.nix
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit e2edcca

Please sign in to comment.