2021-08-22 09:50:07 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, autoreconfHook
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
2021-07-27 14:21:24 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "pwgen";
|
|
|
|
version = "2.08";
|
2007-06-28 09:53:12 +00:00
|
|
|
|
2021-08-22 09:50:07 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tytso";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1j6c6m9fcy24jn8mk989x49yk765xb26lpr8yhpiaqk206wlss2z";
|
2007-06-28 09:53:12 +00:00
|
|
|
};
|
2017-10-30 21:19:11 +00:00
|
|
|
|
2021-08-22 09:50:07 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
];
|
2017-10-30 21:19:11 +00:00
|
|
|
|
2021-08-22 09:50:07 +00:00
|
|
|
meta = with lib; {
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "Password generator which creates passwords which can be easily memorized by a human";
|
2021-08-22 09:50:07 +00:00
|
|
|
homepage = "https://github.com/tytso/pwgen";
|
|
|
|
license = licenses.gpl2Only;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
platforms = platforms.all;
|
2007-06-28 09:53:12 +00:00
|
|
|
};
|
|
|
|
}
|