pwgen: cleanup
This commit is contained in:
parent
61f5b6271d
commit
7803a33a62
@ -1,17 +1,22 @@
|
|||||||
{lib, stdenv, fetchurl, autoreconfHook}:
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "pwgen";
|
pname = "pwgen";
|
||||||
version = "2.08";
|
version = "2.08";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/tytso/pwgen/archive/v${version}.tar.gz";
|
owner = "tytso";
|
||||||
sha256 = "8d6e94f28655e61d6126290e3eafad4d17d7fba0d0d354239522a740a270bb2f";
|
repo = "pwgen";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "8d6e94f58655e61d6126290e3eafad4d17d7fba0d0d354239522a740a270bb2f";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "Password generator which creates passwords which can be easily memorized by a human";
|
description = "Password generator which creates passwords which can be easily memorized by a human";
|
||||||
platforms = lib.platforms.all;
|
maintainers = with maintainers; [ ];
|
||||||
|
license = with licenses; [ gpl2Only ];
|
||||||
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user