diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-11-04 16:04:36 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-11-04 20:28:32 +0200 |
commit | ed683219b454f45dc7e3cce853edf45521392b21 (patch) | |
tree | 81007b6a6e022b22986ac748dc60332ba56f4059 /gnu | |
parent | c385818245120a88910ab477270f81b3c528d45b (diff) | |
download | guix-ed683219b454f45dc7e3cce853edf45521392b21.tar.gz guix-ed683219b454f45dc7e3cce853edf45521392b21.zip |
gnu: pam-krb5: Update source uri.
* gnu/packages/admin.scm (pam-krb5)[source]: Add archive location.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/admin.scm | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index fcf5f7c49a..24833a04d5 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2875,9 +2875,13 @@ shortcut syntax and completion options.") (version "4.8") (source (origin (method url-fetch) - (uri (string-append - "https://archives.eyrie.org/software/kerberos/" - "pam-krb5-" version ".tar.xz")) + (uri + (list (string-append + "https://archives.eyrie.org/software/kerberos/" + "pam-krb5-" version ".tar.xz") + (string-append + "https://archives.eyrie.org/software/ARCHIVE/" + "pam-krb5/pam-krb5-" version ".tar.xz"))) (patches (search-patches "pam-krb5-CVE-2020-10595.patch")) (sha256 (base32 @@ -2911,7 +2915,7 @@ with @code{ChallengeResponseAuthentication} and @code{PrivilegeSeparation} enabled, and supports extensive configuration either by PAM options or in krb5.conf or both. PKINIT is supported with recent versions of both MIT Kerberos and Heimdal and FAST is supported with recent MIT Kerberos.") - (home-page "https://www.eyrie.org/~eagle/software/pam-krb5") + (home-page "https://www.eyrie.org/~eagle/software/pam-krb5/") ;; Dual licenced under a homebrew non-copyleft OR GPL (any version) ;; However, the tarball does not contain a copy of the GPL, so unless ;; we put one in, we cannot distribute it under GPL without violating |