about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorxeji <36407913+xeji@users.noreply.github.com>2018-07-06 13:42:58 +0200
committerGitHub <noreply@github.com>2018-07-06 13:42:58 +0200
commitd868a26a51c38fb23ee49386320cbecf07900459 (patch)
tree0738ef72ab961c0f146080097cd8ac4425a3c130 /pkgs/tools
parent77153c4cdb6e00f7094ea62ca29effff0bd225d4 (diff)
parente921aa02b198254aea080aae2eab89e7f4441bd3 (diff)
downloadnixlib-d868a26a51c38fb23ee49386320cbecf07900459.tar
nixlib-d868a26a51c38fb23ee49386320cbecf07900459.tar.gz
nixlib-d868a26a51c38fb23ee49386320cbecf07900459.tar.bz2
nixlib-d868a26a51c38fb23ee49386320cbecf07900459.tar.lz
nixlib-d868a26a51c38fb23ee49386320cbecf07900459.tar.xz
nixlib-d868a26a51c38fb23ee49386320cbecf07900459.tar.zst
nixlib-d868a26a51c38fb23ee49386320cbecf07900459.zip
Merge pull request #43100 from qoelet/gnu-pw-mgr
gnu-pw-mgr: init 2.3.2
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/gnu-pw-mgr/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/tools/security/gnu-pw-mgr/default.nix b/pkgs/tools/security/gnu-pw-mgr/default.nix
new file mode 100644
index 000000000000..23aec604d2d1
--- /dev/null
+++ b/pkgs/tools/security/gnu-pw-mgr/default.nix
@@ -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 ];
+  };
+}