nixpkgs/pkgs/os-specific/linux/pam_krb5/default.nix
Ryan Mulligan 74907512e1 pam_krb5: 4.7 -> 4.8
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 4.8 with grep in /nix/store/lbmm10zm3yif6n33xvw5irzhzsqkwk7b-pam-krb5-4.8
- directory tree listing: https://gist.github.com/8511cb10102508ce5701ed7e0830e60c
2018-03-25 11:13:36 -05:00

25 lines
826 B
Nix

{ stdenv, fetchurl, pam, kerberos }:
stdenv.mkDerivation rec {
name = "pam-krb5-4.8";
src = fetchurl {
url = "http://archives.eyrie.org/software/kerberos/${name}.tar.gz";
sha256 = "0j96jfaxzkj1ifc3qxagjmaxvgda7ndqaaxx2ka018is9f5lbfrs";
};
buildInputs = [ pam kerberos ];
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.
'';
platforms = platforms.linux;
license = licenses.bsd3;
maintainers = with maintainers; [ wkennington ];
};
}