25 lines
834 B
Nix
25 lines
834 B
Nix
{ stdenv, fetchurl, pam, kerberos }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pam-krb5-4.7";
|
|
|
|
src = fetchurl {
|
|
url = "http://archives.eyrie.org/software/kerberos/${name}.tar.gz";
|
|
sha256 = "04klg9a2rhdz0a2dw4f0ybcm28vcbab6lrynwq7rm4sn0hnzakwv";
|
|
};
|
|
|
|
buildInputs = [ pam kerberos ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.eyrie.org/~eagle/software/pam-krb5/;
|
|
description = "PAM module allowing PAM-aware applications to authenticate users by performing an AS exchange with a Kerberos KDC";
|
|
longDescription = ''
|
|
pam_krb5 can optionally convert Kerberos 5 credentials to Kerberos IV
|
|
credentials and/or use them to set up AFS tokens for a user's session.
|
|
'';
|
|
platforms = platforms.linux;
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ wkennington mornfall ];
|
|
};
|
|
}
|