2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, pam, kerberos }:
|
2010-08-06 09:49:05 +01:00
|
|
|
|
2014-12-30 06:32:23 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-04-06 12:34:30 +01:00
|
|
|
name = "pam-krb5-4.9";
|
2010-08-06 09:49:05 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://archives.eyrie.org/software/kerberos/${name}.tar.gz";
|
2020-04-06 12:34:30 +01:00
|
|
|
sha256 = "0kzz6mjkzw571pkv684vyczhl874f6p7lih3dj7s764gxdxnv4y5";
|
2010-08-06 09:49:05 +01:00
|
|
|
};
|
|
|
|
|
2014-12-30 07:25:35 +00:00
|
|
|
buildInputs = [ pam kerberos ];
|
2014-12-30 06:32:23 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.eyrie.org/~eagle/software/pam-krb5/";
|
2013-10-06 10:49:53 +01:00
|
|
|
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.
|
|
|
|
'';
|
2014-12-30 06:32:23 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.bsd3;
|
2010-08-06 09:49:05 +01:00
|
|
|
};
|
|
|
|
}
|