pam_ccreds: to locally authenticate using an enterprise identity when the network is unavailable.
svn path=/nixpkgs/trunk/; revision=22987
This commit is contained in:
parent
663cff60a4
commit
f3403647d4
19
pkgs/os-specific/linux/pam_ccreds/default.nix
Normal file
19
pkgs/os-specific/linux/pam_ccreds/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{stdenv, fetchurl, pam, openssl, db}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "pam_ccreds-10";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.padl.com/download/pam_ccreds.tgz";
|
||||
sha256 = "1h7zyg1b1h69civyvrj95w22dg0y7lgw3hq4gqkdcg35w1y76fhz";
|
||||
};
|
||||
patchPhase = ''
|
||||
sed 's/-o root -g root//' -i Makefile.in
|
||||
'';
|
||||
|
||||
buildInputs = [pam openssl db];
|
||||
meta = {
|
||||
homepage = "http://www.padl.com/OSS/pam_ccreds.html";
|
||||
description = "The pam_ccreds module provides the means for Linux workstations to locally authenticate using an enterprise identity when the network is unavailable.";
|
||||
};
|
||||
}
|
@ -4727,6 +4727,10 @@ let
|
||||
|
||||
# pam_bioapi ( see http://www.thinkwiki.org/wiki/How_to_enable_the_fingerprint_reader )
|
||||
|
||||
pam_ccreds = callPackage ../os-specific/linux/pam_ccreds {
|
||||
db = db4;
|
||||
};
|
||||
|
||||
pam_console = callPackage ../os-specific/linux/pam_console {
|
||||
libtool = libtool_1_5;
|
||||
flex = if stdenv.system == "i686-linux" then flex else flex2533;
|
||||
|
Loading…
Reference in New Issue
Block a user