My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/security/gnu-pw-mgr/default.nix

20 lines
630 B

{ stdenv, lib, fetchurl, gnulib }:
stdenv.mkDerivation rec {
pname = "gnu-pw-mgr";
version = "2.7.4";
src = fetchurl {
url = "https://ftp.gnu.org/gnu/gnu-pw-mgr/${pname}-${version}.tar.xz";
sha256 = "0fhwvsmsqpw0vnivarfg63l8pgwqfv7d5wi6l80jpb41dj6qpjz8";
};
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 = lib.platforms.linux;
maintainers = with maintainers; [ qoelet ];
};
}