nixpkgs/pkgs/os-specific/linux/pam_krb5/default.nix

25 lines
800 B
Nix
Raw Normal View History

2021-03-14 16:11:48 +00:00
{ lib, stdenv, fetchurl, pam, libkrb5 }:
2014-12-30 06:32:23 +00:00
stdenv.mkDerivation rec {
pname = "pam-krb5";
2022-01-01 21:57:50 +00:00
version = "4.11";
src = fetchurl {
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=";
};
2021-03-14 16:11:48 +00:00
buildInputs = [ pam libkrb5 ];
2014-12-30 06:32:23 +00:00
meta = with lib; {
homepage = "https://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.
'';
2014-12-30 06:32:23 +00:00
platforms = platforms.linux;
license = licenses.bsd3;
};
}