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

25 lines
827 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pam, kerberos }:
2014-12-30 06:32:23 +00:00
stdenv.mkDerivation rec {
name = "pam-krb5-4.8";
src = fetchurl {
url = "https://archives.eyrie.org/software/kerberos/${name}.tar.gz";
sha256 = "0j96jfaxzkj1ifc3qxagjmaxvgda7ndqaaxx2ka018is9f5lbfrs";
};
buildInputs = [ pam kerberos ];
2014-12-30 06:32:23 +00:00
meta = with stdenv.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;
maintainers = with maintainers; [ wkennington ];
};
}