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

24 lines
774 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pam, kerberos }:
2014-12-30 06:32:23 +00:00
stdenv.mkDerivation rec {
2020-04-06 12:34:30 +01:00
name = "pam-krb5-4.9";
src = fetchurl {
url = "https://archives.eyrie.org/software/kerberos/${name}.tar.gz";
2020-04-06 12:34:30 +01:00
sha256 = "0kzz6mjkzw571pkv684vyczhl874f6p7lih3dj7s764gxdxnv4y5";
};
buildInputs = [ pam kerberos ];
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;
};
}