summary refs log tree commit diff
path: root/pkgs/os-specific/linux/pam_krb5
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-12-29 22:32:23 -0800
committerWilliam A. Kennington III <william@wkennington.com>2014-12-29 22:32:23 -0800
commit315c53bbd3e598484b26173a3098f07ebb9eb555 (patch)
treef26fb6aa4011f9ee30776ebe70277f7fc7c2ff3e /pkgs/os-specific/linux/pam_krb5
parent6dc71c19b0b5e231ff173b15c77d72920eeedba3 (diff)
downloadnixpkgs-315c53bbd3e598484b26173a3098f07ebb9eb555.tar
nixpkgs-315c53bbd3e598484b26173a3098f07ebb9eb555.tar.gz
nixpkgs-315c53bbd3e598484b26173a3098f07ebb9eb555.tar.bz2
nixpkgs-315c53bbd3e598484b26173a3098f07ebb9eb555.tar.lz
nixpkgs-315c53bbd3e598484b26173a3098f07ebb9eb555.tar.xz
nixpkgs-315c53bbd3e598484b26173a3098f07ebb9eb555.tar.zst
nixpkgs-315c53bbd3e598484b26173a3098f07ebb9eb555.zip
pam_krb5: 2.3.11 -> 2.4.9
Diffstat (limited to 'pkgs/os-specific/linux/pam_krb5')
-rw-r--r--pkgs/os-specific/linux/pam_krb5/default.nix24
1 files changed, 12 insertions, 12 deletions
diff --git a/pkgs/os-specific/linux/pam_krb5/default.nix b/pkgs/os-specific/linux/pam_krb5/default.nix
index 0c182b5baa6..28f13c9ae7a 100644
--- a/pkgs/os-specific/linux/pam_krb5/default.nix
+++ b/pkgs/os-specific/linux/pam_krb5/default.nix
@@ -1,24 +1,24 @@
-{stdenv, fetchurl, pam, kerberos}:
+{ stdenv, fetchurl, pam, krb5 }:
 
-stdenv.mkDerivation {
-  name = "pam_krb5-2.3.11-1";
+stdenv.mkDerivation rec {
+  name = "pam_krb5-2.4.9";
 
   src = fetchurl {
-    url = https://fedorahosted.org/releases/p/a/pam_krb5/pam_krb5-2.3.11-1.tar.gz;
-    sha256 = "1x6wgjzkfkx0h9a7wdgx0jwrdm15npbs79i510lk1n3fyx9lk4mq";
-#    url = http://archives.eyrie.org/software/kerberos/pam-krb5-4.2.tar.gz;
-#    sha256 = "0a0zyd4ddln8yf827qxbfqi1pryxnj0fykfz8lx6nxn2f9pqj1gv";
+    url = "https://fedorahosted.org/releases/p/a/pam_krb5/${name}.tar.gz";
+    sha256 = "0vcb35shzp406jvvz0pkgqm8qq1qzhgwmkl0nrm0wrrkqlr22rfb";
   };
 
-  buildInputs = [pam kerberos];
-  meta = {
-#    homepage = "http://www.eyrie.org/~eagle/software/pam-krb5";
-    homepage = "https://fedorahosted.org/pam_krb5/";
+  buildInputs = [ pam krb5 ];
+
+  meta = with stdenv.lib; {
+    homepage = https://fedorahosted.org/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.
     '';
-    maintainers = [ stdenv.lib.maintainers.mornfall ];
+    platforms = platforms.linux;
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ wkennington mornfall ];
   };
 }