mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
* Added pam_ssh_agent_auth, a PAM module for authentication through
the SSH agent. svn path=/nixpkgs/trunk/; revision=34462
This commit is contained in:
parent
e0f5d8870e
commit
d63bcce038
17
pkgs/os-specific/linux/pam_ssh_agent_auth/default.nix
Normal file
17
pkgs/os-specific/linux/pam_ssh_agent_auth/default.nix
Normal file
@ -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";
|
||||
};
|
||||
}
|
@ -5912,6 +5912,8 @@ let
|
||||
|
||||
pam_login = callPackage ../os-specific/linux/pam_login { };
|
||||
|
||||
pam_ssh_agent_auth = callPackage ../os-specific/linux/pam_ssh_agent_auth { };
|
||||
|
||||
pam_unix2 = callPackage ../os-specific/linux/pam_unix2 { };
|
||||
|
||||
pam_usb = callPackage ../os-specific/linux/pam_usb { };
|
||||
|
Loading…
Reference in New Issue
Block a user