2018-07-06 04:48:01 +00:00
|
|
|
{ stdenv, lib, fetchurl, gnulib }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gnu-pw-mgr";
|
2018-09-02 19:05:05 +00:00
|
|
|
version = "2.4.2";
|
2018-07-06 04:48:01 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://ftp.gnu.org/gnu/gnu-pw-mgr/${pname}-${version}.tar.xz";
|
2018-09-02 19:05:05 +00:00
|
|
|
sha256 = "1yvdzc5w37qrjrkby5699ygj9bhkvgi3zk9k9jcjry1j6b7wdl17";
|
2018-07-06 04:48:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gnulib ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.gnu.org/software/gnu-pw-mgr/";
|
2018-07-06 04:48:01 +00:00
|
|
|
description = "A password manager designed to make it easy to reconstruct difficult passwords";
|
|
|
|
license = with licenses; [ gpl3Plus lgpl3Plus ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = with maintainers; [ qoelet ];
|
|
|
|
};
|
|
|
|
}
|