2021-03-14 16:11:48 +00:00
|
|
|
{ lib, stdenv, fetchurl, pam, libkrb5 }:
|
2010-08-06 08:49:05 +00:00
|
|
|
|
2014-12-30 06:32:23 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-08-27 14:47:49 +00:00
|
|
|
pname = "pam-krb5";
|
2022-01-01 21:57:50 +00:00
|
|
|
version = "4.11";
|
2010-08-06 08:49:05 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-27 14:47:49 +00:00
|
|
|
url = "https://archives.eyrie.org/software/kerberos/pam-krb5-${version}.tar.gz";
|
2022-01-01 21:57:50 +00:00
|
|
|
sha256 = "sha256-UDy+LLGv9L39o7z3+T+U+2ulLCbXCJNOcDmyGC/hCyA=";
|
2010-08-06 08:49:05 +00:00
|
|
|
};
|
|
|
|
|
2021-03-14 16:11:48 +00:00
|
|
|
buildInputs = [ pam libkrb5 ];
|
2014-12-30 06:32:23 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.eyrie.org/~eagle/software/pam-krb5/";
|
2013-10-06 09:49:53 +00: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 08:49:05 +00:00
|
|
|
};
|
|
|
|
}
|