1{ stdenv, lib, fetchurl, gnulib }:
2
3stdenv.mkDerivation rec {
4 pname = "gnu-pw-mgr";
5 version = "2.7.4";
6 src = fetchurl {
7 url = "https://ftp.gnu.org/gnu/gnu-pw-mgr/${pname}-${version}.tar.xz";
8 sha256 = "0fhwvsmsqpw0vnivarfg63l8pgwqfv7d5wi6l80jpb41dj6qpjz8";
9 };
10
11 buildInputs = [ gnulib ];
12
13 meta = with lib; {
14 homepage = "https://www.gnu.org/software/gnu-pw-mgr/";
15 description = "A password manager designed to make it easy to reconstruct difficult passwords";
16 license = with licenses; [ gpl3Plus lgpl3Plus ];
17 platforms = lib.platforms.linux;
18 maintainers = with maintainers; [ qoelet ];
19 };
20}