about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/pam_ssh_agent_auth
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-06-11 16:45:54 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-06-11 16:45:54 +0000
commitd63bcce03827d329ff514f529623ab235660e553 (patch)
tree43ea78ddaea7d3451231d6e2b8758411baa921ee /pkgs/os-specific/linux/pam_ssh_agent_auth
parente0f5d8870ec0c7b94231db051f50c196a0b4d665 (diff)
* Added pam_ssh_agent_auth, a PAM module for authentication through
  the SSH agent.

svn path=/nixpkgs/trunk/; revision=34462
Diffstat (limited to 'pkgs/os-specific/linux/pam_ssh_agent_auth')
-rw-r--r--pkgs/os-specific/linux/pam_ssh_agent_auth/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/pam_ssh_agent_auth/default.nix b/pkgs/os-specific/linux/pam_ssh_agent_auth/default.nix
new file mode 100644
index 0000000000000..346008706718d
--- /dev/null
+++ b/pkgs/os-specific/linux/pam_ssh_agent_auth/default.nix
@@ -0,0 +1,17 @@
+{ stdenv, fetchurl, pam, openssl, perl }:
+
+stdenv.mkDerivation rec {
+  name = "pam_ssh_agent_auth-0.9.3";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/pamsshagentauth/${name}.tar.bz2";
+    sha256 = "19p5mzplnr9g9vlp16nipf5rjw4v8zncvimarwgix958yml7j08h";
+  };
+
+  buildInputs = [ pam openssl perl ];
+
+  meta = {
+    homepage = http://pamsshagentauth.sourceforge.net/;
+    description = "PAM module for authentication through the SSH agent";
+  };
+}