Merge pull request #43100 from qoelet/gnu-pw-mgr
gnu-pw-mgr: init 2.3.2
This commit is contained in:
commit
d868a26a51
@ -3185,6 +3185,11 @@
|
||||
github = "qknight";
|
||||
name = "Joachim Schiele";
|
||||
};
|
||||
qoelet = {
|
||||
email = "kenny@machinesung.com";
|
||||
github = "qoelet";
|
||||
name = "Kenny Shen";
|
||||
};
|
||||
ragge = {
|
||||
email = "r.dahlen@gmail.com";
|
||||
github = "ragnard";
|
||||
|
20
pkgs/tools/security/gnu-pw-mgr/default.nix
Normal file
20
pkgs/tools/security/gnu-pw-mgr/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ stdenv, lib, fetchurl, gnulib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gnu-pw-mgr-${version}";
|
||||
version = "2.3.2";
|
||||
src = fetchurl {
|
||||
url = "http://ftp.gnu.org/gnu/gnu-pw-mgr/${name}.tar.xz";
|
||||
sha256 = "0x60g0syqpd107l8w4bl213imy2lspm4kz1j18yr1sh10rdxlgxd";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -2704,6 +2704,8 @@ with pkgs;
|
||||
# must have AquaTerm installed separately
|
||||
gnuplot_aquaterm = gnuplot.override { aquaterm = true; };
|
||||
|
||||
gnu-pw-mgr = callPackage ../tools/security/gnu-pw-mgr { };
|
||||
|
||||
gnused = callPackage ../tools/text/gnused { };
|
||||
# This is an easy work-around for [:space:] problems.
|
||||
gnused_422 = callPackage ../tools/text/gnused/422.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user