1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00
nixpkgs/pkgs/tools/security/gnu-pw-mgr/default.nix

21 lines
635 B
Nix
Raw Normal View History

2018-07-06 05:48:01 +01:00
{ stdenv, lib, fetchurl, gnulib }:
stdenv.mkDerivation rec {
pname = "gnu-pw-mgr";
2018-09-02 20:05:05 +01:00
version = "2.4.2";
2018-07-06 05:48:01 +01:00
src = fetchurl {
url = "https://ftp.gnu.org/gnu/gnu-pw-mgr/${pname}-${version}.tar.xz";
2018-09-02 20:05:05 +01:00
sha256 = "1yvdzc5w37qrjrkby5699ygj9bhkvgi3zk9k9jcjry1j6b7wdl17";
2018-07-06 05:48:01 +01:00
};
buildInputs = [ gnulib ];
meta = with lib; {
homepage = https://www.gnu.org/software/gnu-pw-mgr/;
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 ];
};
}