about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/linux/pam_krb5/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/os-specific/linux/pam_krb5/default.nix')
-rw-r--r--nixpkgs/pkgs/os-specific/linux/pam_krb5/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/os-specific/linux/pam_krb5/default.nix b/nixpkgs/pkgs/os-specific/linux/pam_krb5/default.nix
new file mode 100644
index 000000000000..dd3957d36185
--- /dev/null
+++ b/nixpkgs/pkgs/os-specific/linux/pam_krb5/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, pam, kerberos }:
+
+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 ];
+
+  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 ];
+  };
+}