2021-03-14 09:11:48 -07:00
|
|
|
{ lib, stdenv, fetchurl, pam, libkrb5 }:
|
2010-08-06 01:49:05 -07:00
|
|
|
|
2014-12-29 22:32:23 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2021-04-01 09:36:18 -07:00
|
|
|
name = "pam-krb5-4.10";
|
2010-08-06 01:49:05 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://archives.eyrie.org/software/kerberos/${name}.tar.gz";
|
2021-04-01 09:36:18 -07:00
|
|
|
sha256 = "09wzxd5zrj5bzqpb01qf148npj5k8hmd2bx2ij1qsy40hdxqyq79";
|
2010-08-06 01:49:05 -07:00
|
|
|
};
|
|
|
|
|
2021-03-14 09:11:48 -07:00
|
|
|
buildInputs = [ pam libkrb5 ];
|
2014-12-29 22:32:23 -08:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.eyrie.org/~eagle/software/pam-krb5/";
|
2013-10-06 02:49:53 -07: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-29 22:32:23 -08:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.bsd3;
|
2010-08-06 01:49:05 -07:00
|
|
|
};
|
|
|
|
}
|