summary refs log tree commit diff
path: root/pkgs/tools/security/pamtester
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-01-09 19:23:56 +0300
committerNikolay Amiantov <ab@fmap.me>2016-01-10 06:03:21 +0300
commit828a7f99fdb0c28fc9782a955930eb1403a77829 (patch)
treef81b678ea4a8c1d2082d4a31ed6799dda32d5259 /pkgs/tools/security/pamtester
parentba56bbf08d78cd6eb022f61d1e0a9bb90c30209c (diff)
downloadnixpkgs-828a7f99fdb0c28fc9782a955930eb1403a77829.tar
nixpkgs-828a7f99fdb0c28fc9782a955930eb1403a77829.tar.gz
nixpkgs-828a7f99fdb0c28fc9782a955930eb1403a77829.tar.bz2
nixpkgs-828a7f99fdb0c28fc9782a955930eb1403a77829.tar.lz
nixpkgs-828a7f99fdb0c28fc9782a955930eb1403a77829.tar.xz
nixpkgs-828a7f99fdb0c28fc9782a955930eb1403a77829.tar.zst
nixpkgs-828a7f99fdb0c28fc9782a955930eb1403a77829.zip
pamtester: init at 0.1.2
Diffstat (limited to 'pkgs/tools/security/pamtester')
-rw-r--r--pkgs/tools/security/pamtester/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/tools/security/pamtester/default.nix b/pkgs/tools/security/pamtester/default.nix
new file mode 100644
index 00000000000..cdafed53408
--- /dev/null
+++ b/pkgs/tools/security/pamtester/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, pam }:
+
+stdenv.mkDerivation rec {
+  name = "pamtester-0.1.2";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/pamtester/${name}.tar.gz";
+    sha256 = "1mdj1wj0adcnx354fs17928yn2xfr1hj5mfraq282dagi873sqw3";
+  };
+
+  buildInputs = [ pam ];
+
+  meta = with stdenv.lib; {
+    description = "Utility program to test the PAM facility.";
+    homepage = http://pamtester.sourceforge.net/;
+    license = licenses.bsd3;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ abbradar ];
+  };
+}