nixpkgs/pkgs/tools/security/gnu-pw-mgr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
630 B
Nix
Raw Normal View History

2018-07-06 07:48:01 +03:00
{ stdenv, lib, fetchurl, gnulib }:
stdenv.mkDerivation rec {
pname = "gnu-pw-mgr";
2020-11-01 03:41:26 +03:00
version = "2.7.4";
2018-07-06 07:48:01 +03:00
src = fetchurl {
url = "https://ftp.gnu.org/gnu/gnu-pw-mgr/${pname}-${version}.tar.xz";
2020-11-01 03:41:26 +03:00
sha256 = "0fhwvsmsqpw0vnivarfg63l8pgwqfv7d5wi6l80jpb41dj6qpjz8";
2018-07-06 07:48:01 +03:00
};
buildInputs = [ gnulib ];
meta = with lib; {
homepage = "https://www.gnu.org/software/gnu-pw-mgr/";
2018-07-06 07:48:01 +03:00
description = "A password manager designed to make it easy to reconstruct difficult passwords";
license = with licenses; [ gpl3Plus lgpl3Plus ];
2021-01-15 12:19:50 +03:00
platforms = lib.platforms.linux;
2018-07-06 07:48:01 +03:00
maintainers = with maintainers; [ qoelet ];
};
}