2013-01-05 23:47:50 +00:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2013-01-20 21:29:55 +00:00
|
|
|
;;; Copyright © 2012, 2013 Andreas Enge <andreas@enge.fr>
|
gnu: Move Kerberos implemetations to (gnu packages kerberos).
* gnu/packages/mit-krb5.scm: Remove.
* gnu/packages/shishi.scm: Remove.
* gnu/packages/kerberos.scm: New file, from the concatenation of these
two.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/admin.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/gnome.scm, gnu/packages/gnuzilla.scm,
gnu/packages/gsasl.scm, gnu/packages/java.scm,
gnu/packages/networking.scm, gnu/packages/nfs.scm,
gnu/packages/onc-rpc.scm, gnu/packages/ssh.scm,
gnu/packages/web.scm: Adjust accordingly.
2017-01-18 08:57:43 +00:00
|
|
|
;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
|
2017-10-09 01:54:56 +00:00
|
|
|
;;; Copyright © 2016, 2017 Leo Famulari <leo@famulari.name>
|
2016-08-29 20:51:12 +00:00
|
|
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
gnu: Move Kerberos implemetations to (gnu packages kerberos).
* gnu/packages/mit-krb5.scm: Remove.
* gnu/packages/shishi.scm: Remove.
* gnu/packages/kerberos.scm: New file, from the concatenation of these
two.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/admin.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/gnome.scm, gnu/packages/gnuzilla.scm,
gnu/packages/gsasl.scm, gnu/packages/java.scm,
gnu/packages/networking.scm, gnu/packages/nfs.scm,
gnu/packages/onc-rpc.scm, gnu/packages/ssh.scm,
gnu/packages/web.scm: Adjust accordingly.
2017-01-18 08:57:43 +00:00
|
|
|
;;; Copyright © 2012, 2013 Nikita Karetnikov <nikita@karetnikov.org>
|
2017-01-18 12:31:36 +00:00
|
|
|
;;; Copyright © 2012, 2017 Ludovic Courtès <ludo@gnu.org>
|
2017-05-24 18:08:03 +00:00
|
|
|
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
2012-12-29 23:08:46 +00:00
|
|
|
;;;
|
2013-01-05 23:47:50 +00:00
|
|
|
;;; This file is part of GNU Guix.
|
2012-12-29 23:08:46 +00:00
|
|
|
;;;
|
2013-01-05 23:47:50 +00:00
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-12-29 23:08:46 +00:00
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
2013-01-05 23:47:50 +00:00
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
2012-12-29 23:08:46 +00:00
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
2013-01-05 23:47:50 +00:00
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-12-29 23:08:46 +00:00
|
|
|
|
gnu: Move Kerberos implemetations to (gnu packages kerberos).
* gnu/packages/mit-krb5.scm: Remove.
* gnu/packages/shishi.scm: Remove.
* gnu/packages/kerberos.scm: New file, from the concatenation of these
two.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/admin.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/gnome.scm, gnu/packages/gnuzilla.scm,
gnu/packages/gsasl.scm, gnu/packages/java.scm,
gnu/packages/networking.scm, gnu/packages/nfs.scm,
gnu/packages/onc-rpc.scm, gnu/packages/ssh.scm,
gnu/packages/web.scm: Adjust accordingly.
2017-01-18 08:57:43 +00:00
|
|
|
(define-module (gnu packages kerberos)
|
2013-01-18 00:06:47 +00:00
|
|
|
#:use-module (gnu packages)
|
2017-06-29 08:11:18 +00:00
|
|
|
#:use-module (gnu packages autotools)
|
2013-01-18 00:06:24 +00:00
|
|
|
#:use-module (gnu packages bison)
|
|
|
|
#:use-module (gnu packages perl)
|
2017-06-29 08:11:18 +00:00
|
|
|
#:use-module (gnu packages gettext)
|
gnu: Move Kerberos implemetations to (gnu packages kerberos).
* gnu/packages/mit-krb5.scm: Remove.
* gnu/packages/shishi.scm: Remove.
* gnu/packages/kerberos.scm: New file, from the concatenation of these
two.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/admin.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/gnome.scm, gnu/packages/gnuzilla.scm,
gnu/packages/gsasl.scm, gnu/packages/java.scm,
gnu/packages/networking.scm, gnu/packages/nfs.scm,
gnu/packages/onc-rpc.scm, gnu/packages/ssh.scm,
gnu/packages/web.scm: Adjust accordingly.
2017-01-18 08:57:43 +00:00
|
|
|
#:use-module (gnu packages gnupg)
|
|
|
|
#:use-module (gnu packages libidn)
|
|
|
|
#:use-module (gnu packages linux)
|
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
#:use-module (gnu packages compression)
|
2017-01-18 12:31:36 +00:00
|
|
|
#:use-module (gnu packages databases)
|
|
|
|
#:use-module (gnu packages readline)
|
2017-06-29 08:11:18 +00:00
|
|
|
#:use-module (gnu packages texinfo)
|
gnu: Move Kerberos implemetations to (gnu packages kerberos).
* gnu/packages/mit-krb5.scm: Remove.
* gnu/packages/shishi.scm: Remove.
* gnu/packages/kerberos.scm: New file, from the concatenation of these
two.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/admin.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/gnome.scm, gnu/packages/gnuzilla.scm,
gnu/packages/gsasl.scm, gnu/packages/java.scm,
gnu/packages/networking.scm, gnu/packages/nfs.scm,
gnu/packages/onc-rpc.scm, gnu/packages/ssh.scm,
gnu/packages/web.scm: Adjust accordingly.
2017-01-18 08:57:43 +00:00
|
|
|
#:use-module (gnu packages tls)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2012-12-29 23:08:46 +00:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2015-11-09 03:37:33 +00:00
|
|
|
#:use-module (guix utils)
|
2012-12-29 23:08:46 +00:00
|
|
|
#:use-module (guix build-system gnu))
|
|
|
|
|
|
|
|
(define-public mit-krb5
|
|
|
|
(package
|
2013-11-26 21:31:22 +00:00
|
|
|
(name "mit-krb5")
|
2017-12-13 06:53:30 +00:00
|
|
|
(version "1.16")
|
2013-11-26 21:31:22 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2017-12-13 06:53:30 +00:00
|
|
|
(uri (list
|
|
|
|
(string-append "https://web.mit.edu/kerberos/dist/krb5/"
|
|
|
|
(version-major+minor version)
|
|
|
|
"/krb5-" version ".tar.gz")
|
|
|
|
(string-append "https://kerberos.org/dist/krb5/"
|
|
|
|
(version-major+minor version)
|
|
|
|
"/krb5-" version ".tar.gz")))
|
gnu: mit-krb5: Update to 1.13.3; add fixes for CVE-2015-{8629,8630,8631}.
* gnu/packages/patches/mit-krb5-CVE-2015-2695-pt1.patch,
gnu/packages/patches/mit-krb5-CVE-2015-2695-pt2.patch,
gnu/packages/patches/mit-krb5-CVE-2015-2696.patch,
gnu/packages/patches/mit-krb5-CVE-2015-2697.patch,
gnu/packages/patches/mit-krb5-CVE-2015-2698-pt1.patch,
gnu/packages/patches/mit-krb5-CVE-2015-2698-pt2.patch: Delete files.
* gnu/packages/patches/mit-krb5-CVE-2015-8629.patch,
gnu/packages/patches/mit-krb5-CVE-2015-8630.patch,
gnu/packages/patches/mit-krb5-CVE-2015-8631.patch,
gnu/packages/patches/mit-krb5-init-context-null-spnego.patch: New files.
* gnu-system.am (dist_patch_DATA): Adjust accordingly.
* gnu/packages/mit-krb5.scm (mit-krb5): Update to 1.13.3.
[source]: Update URI to download conventional .tar.gz file. Add patches.
[native-inputs]: Remove old patches-as-inputs.
[arguments]: Remove hacks needed to cope with the older unconventional
tarball that contained an inner source tarball and signature: Remove
#:modules argument, and the custom 'unpack' and 'apply-patches' phases.
2016-02-04 07:02:20 +00:00
|
|
|
(sha256
|
|
|
|
(base32
|
2017-12-13 06:53:30 +00:00
|
|
|
"024yjr15ij0qdnay0bcqfpclgfri0qa8iw4r5zdlryxhhdgi5szs"))))
|
2013-11-26 21:31:22 +00:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
2015-11-09 04:00:28 +00:00
|
|
|
`(("bison" ,bison)
|
gnu: mit-krb5: Update to 1.13.3; add fixes for CVE-2015-{8629,8630,8631}.
* gnu/packages/patches/mit-krb5-CVE-2015-2695-pt1.patch,
gnu/packages/patches/mit-krb5-CVE-2015-2695-pt2.patch,
gnu/packages/patches/mit-krb5-CVE-2015-2696.patch,
gnu/packages/patches/mit-krb5-CVE-2015-2697.patch,
gnu/packages/patches/mit-krb5-CVE-2015-2698-pt1.patch,
gnu/packages/patches/mit-krb5-CVE-2015-2698-pt2.patch: Delete files.
* gnu/packages/patches/mit-krb5-CVE-2015-8629.patch,
gnu/packages/patches/mit-krb5-CVE-2015-8630.patch,
gnu/packages/patches/mit-krb5-CVE-2015-8631.patch,
gnu/packages/patches/mit-krb5-init-context-null-spnego.patch: New files.
* gnu-system.am (dist_patch_DATA): Adjust accordingly.
* gnu/packages/mit-krb5.scm (mit-krb5): Update to 1.13.3.
[source]: Update URI to download conventional .tar.gz file. Add patches.
[native-inputs]: Remove old patches-as-inputs.
[arguments]: Remove hacks needed to cope with the older unconventional
tarball that contained an inner source tarball and signature: Remove
#:modules argument, and the custom 'unpack' and 'apply-patches' phases.
2016-02-04 07:02:20 +00:00
|
|
|
("perl" ,perl)))
|
2013-11-26 21:31:22 +00:00
|
|
|
(arguments
|
2017-05-24 18:08:40 +00:00
|
|
|
`(;; XXX: On 32-bit systems, 'kdb5_util' hangs on an fcntl/F_SETLKW call
|
2016-06-30 08:47:24 +00:00
|
|
|
;; while running the tests in 'src/tests'.
|
|
|
|
#:tests? ,(string=? (%current-system) "x86_64-linux")
|
2016-06-28 12:10:02 +00:00
|
|
|
|
2016-06-14 19:20:30 +00:00
|
|
|
#:phases
|
2015-11-09 03:37:33 +00:00
|
|
|
(modify-phases %standard-phases
|
gnu: mit-krb5: Update to 1.13.3; add fixes for CVE-2015-{8629,8630,8631}.
* gnu/packages/patches/mit-krb5-CVE-2015-2695-pt1.patch,
gnu/packages/patches/mit-krb5-CVE-2015-2695-pt2.patch,
gnu/packages/patches/mit-krb5-CVE-2015-2696.patch,
gnu/packages/patches/mit-krb5-CVE-2015-2697.patch,
gnu/packages/patches/mit-krb5-CVE-2015-2698-pt1.patch,
gnu/packages/patches/mit-krb5-CVE-2015-2698-pt2.patch: Delete files.
* gnu/packages/patches/mit-krb5-CVE-2015-8629.patch,
gnu/packages/patches/mit-krb5-CVE-2015-8630.patch,
gnu/packages/patches/mit-krb5-CVE-2015-8631.patch,
gnu/packages/patches/mit-krb5-init-context-null-spnego.patch: New files.
* gnu-system.am (dist_patch_DATA): Adjust accordingly.
* gnu/packages/mit-krb5.scm (mit-krb5): Update to 1.13.3.
[source]: Update URI to download conventional .tar.gz file. Add patches.
[native-inputs]: Remove old patches-as-inputs.
[arguments]: Remove hacks needed to cope with the older unconventional
tarball that contained an inner source tarball and signature: Remove
#:modules argument, and the custom 'unpack' and 'apply-patches' phases.
2016-02-04 07:02:20 +00:00
|
|
|
(add-after 'unpack 'enter-source-directory
|
2015-11-09 03:37:33 +00:00
|
|
|
(lambda _
|
|
|
|
(chdir "src")
|
|
|
|
#t))
|
|
|
|
(add-before 'check 'pre-check
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(let ((perl (assoc-ref inputs "perl")))
|
|
|
|
(substitute* "plugins/kdb/db2/libdb2/test/run.test"
|
|
|
|
(("/bin/cat") (string-append perl "/bin/perl"))
|
2017-01-23 21:33:10 +00:00
|
|
|
(("D/bin/sh") (string-append "D" (which "sh")))
|
2015-11-09 03:37:33 +00:00
|
|
|
(("bindir=/bin/.") (string-append "bindir=" perl "/bin"))))
|
|
|
|
|
|
|
|
;; avoid service names since /etc/services is unavailable
|
2013-11-26 21:31:22 +00:00
|
|
|
(substitute* "tests/resolve/Makefile"
|
|
|
|
(("-p telnet") "-p 23"))
|
2015-11-09 03:37:33 +00:00
|
|
|
#t)))))
|
2013-11-26 21:31:22 +00:00
|
|
|
(synopsis "MIT Kerberos 5")
|
|
|
|
(description
|
|
|
|
"Massachusetts Institute of Technology implementation of Kerberos.
|
2012-12-29 23:08:46 +00:00
|
|
|
Kerberos is a network authentication protocol designed to provide strong
|
gnu packages: Clean up synopses and descriptions.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm, gnu/packages/bittorrent.scm,
gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/databases.scm, gnu/packages/enchant.scm,
gnu/packages/firmware.scm, gnu/packages/fonts.scm,
gnu/packages/freedesktop.scm, gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/gl.scm, gnu/packages/gnome.scm, gnu/packages/gsasl.scm,
gnu/packages/gstreamer.scm, gnu/packages/gtk.scm, gnu/packages/guile.scm,
gnu/packages/haskell.scm, gnu/packages/language.scm,
gnu/packages/lesstif.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/llvm.scm, gnu/packages/maths.scm,
gnu/packages/mcrypt.scm, gnu/packages/mit-krb5.scm, gnu/packages/mp3.scm,
gnu/packages/ncdu.scm, gnu/packages/networking.scm, gnu/packages/ntp.scm,
gnu/packages/ocaml.scm, gnu/packages/openbox.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/pretty-print.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python.scm,
gnu/packages/rdesktop.scm, gnu/packages/rdf.scm, gnu/packages/ruby.scm,
gnu/packages/slang.scm, gnu/packages/slim.scm, gnu/packages/telephony.scm,
gnu/packages/tls.scm, gnu/packages/tmux.scm, gnu/packages/tre.scm,
gnu/packages/unrtf.scm, gnu/packages/version-control.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wget.scm,
gnu/packages/xdisorg.scm, gnu/packages/xfce.scm, gnu/packages/xiph.scm:
Fix typos. Trim long lines. Add missing periods in the end of sentences.
Use double spaces between sentences. Remove trailing whitespaces.
2015-07-17 12:16:07 +00:00
|
|
|
authentication for client/server applications by using secret-key
|
|
|
|
cryptography.")
|
gnu: Move Kerberos implemetations to (gnu packages kerberos).
* gnu/packages/mit-krb5.scm: Remove.
* gnu/packages/shishi.scm: Remove.
* gnu/packages/kerberos.scm: New file, from the concatenation of these
two.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/admin.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/gnome.scm, gnu/packages/gnuzilla.scm,
gnu/packages/gsasl.scm, gnu/packages/java.scm,
gnu/packages/networking.scm, gnu/packages/nfs.scm,
gnu/packages/onc-rpc.scm, gnu/packages/ssh.scm,
gnu/packages/web.scm: Adjust accordingly.
2017-01-18 08:57:43 +00:00
|
|
|
(license (license:non-copyleft "file://NOTICE"
|
|
|
|
"See NOTICE in the distribution."))
|
2017-07-12 22:07:54 +00:00
|
|
|
(home-page "http://web.mit.edu/kerberos/")
|
|
|
|
(properties '((cpe-name . "kerberos")))))
|
gnu: Move Kerberos implemetations to (gnu packages kerberos).
* gnu/packages/mit-krb5.scm: Remove.
* gnu/packages/shishi.scm: Remove.
* gnu/packages/kerberos.scm: New file, from the concatenation of these
two.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/admin.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/gnome.scm, gnu/packages/gnuzilla.scm,
gnu/packages/gsasl.scm, gnu/packages/java.scm,
gnu/packages/networking.scm, gnu/packages/nfs.scm,
gnu/packages/onc-rpc.scm, gnu/packages/ssh.scm,
gnu/packages/web.scm: Adjust accordingly.
2017-01-18 08:57:43 +00:00
|
|
|
|
|
|
|
(define-public shishi
|
|
|
|
(package
|
|
|
|
(name "shishi")
|
|
|
|
(version "1.0.2")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/shishi/shishi-"
|
|
|
|
version ".tar.gz"))
|
2017-06-29 08:11:18 +00:00
|
|
|
(patches (search-patches "shishi-fix-libgcrypt-detection.patch"))
|
gnu: Move Kerberos implemetations to (gnu packages kerberos).
* gnu/packages/mit-krb5.scm: Remove.
* gnu/packages/shishi.scm: Remove.
* gnu/packages/kerberos.scm: New file, from the concatenation of these
two.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/admin.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/gnome.scm, gnu/packages/gnuzilla.scm,
gnu/packages/gsasl.scm, gnu/packages/java.scm,
gnu/packages/networking.scm, gnu/packages/nfs.scm,
gnu/packages/onc-rpc.scm, gnu/packages/ssh.scm,
gnu/packages/web.scm: Adjust accordingly.
2017-01-18 08:57:43 +00:00
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"032qf72cpjdfffq1yq54gz3ahgqf2ijca4vl31sfabmjzq9q370d"))))
|
|
|
|
(build-system gnu-build-system)
|
2017-06-29 08:11:18 +00:00
|
|
|
(arguments
|
|
|
|
'(;; This is required since we patch some of the build scripts.
|
|
|
|
;; Remove for the next Shishi release after 1.0.2 or when
|
|
|
|
;; removing 'shishi-fix-libgcrypt-detection.patch'.
|
|
|
|
#:configure-flags '("ac_cv_libgcrypt=yes")))
|
gnu: Move Kerberos implemetations to (gnu packages kerberos).
* gnu/packages/mit-krb5.scm: Remove.
* gnu/packages/shishi.scm: Remove.
* gnu/packages/kerberos.scm: New file, from the concatenation of these
two.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/admin.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/gnome.scm, gnu/packages/gnuzilla.scm,
gnu/packages/gsasl.scm, gnu/packages/java.scm,
gnu/packages/networking.scm, gnu/packages/nfs.scm,
gnu/packages/onc-rpc.scm, gnu/packages/ssh.scm,
gnu/packages/web.scm: Adjust accordingly.
2017-01-18 08:57:43 +00:00
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("gnutls" ,gnutls)
|
|
|
|
("libidn" ,libidn)
|
|
|
|
("linux-pam" ,linux-pam-1.2)
|
|
|
|
("zlib" ,zlib)
|
2017-06-29 08:11:18 +00:00
|
|
|
("libgcrypt" ,libgcrypt)
|
gnu: Move Kerberos implemetations to (gnu packages kerberos).
* gnu/packages/mit-krb5.scm: Remove.
* gnu/packages/shishi.scm: Remove.
* gnu/packages/kerberos.scm: New file, from the concatenation of these
two.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/admin.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/gnome.scm, gnu/packages/gnuzilla.scm,
gnu/packages/gsasl.scm, gnu/packages/java.scm,
gnu/packages/networking.scm, gnu/packages/nfs.scm,
gnu/packages/onc-rpc.scm, gnu/packages/ssh.scm,
gnu/packages/web.scm: Adjust accordingly.
2017-01-18 08:57:43 +00:00
|
|
|
("libtasn1" ,libtasn1)))
|
2017-03-29 22:48:16 +00:00
|
|
|
(home-page "https://www.gnu.org/software/shishi/")
|
gnu: Move Kerberos implemetations to (gnu packages kerberos).
* gnu/packages/mit-krb5.scm: Remove.
* gnu/packages/shishi.scm: Remove.
* gnu/packages/kerberos.scm: New file, from the concatenation of these
two.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/admin.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/gnome.scm, gnu/packages/gnuzilla.scm,
gnu/packages/gsasl.scm, gnu/packages/java.scm,
gnu/packages/networking.scm, gnu/packages/nfs.scm,
gnu/packages/onc-rpc.scm, gnu/packages/ssh.scm,
gnu/packages/web.scm: Adjust accordingly.
2017-01-18 08:57:43 +00:00
|
|
|
(synopsis "Implementation of the Kerberos 5 network security system")
|
|
|
|
(description
|
|
|
|
"GNU Shishi is a free implementation of the Kerberos 5 network security
|
|
|
|
system. It is used to allow non-secure network nodes to communicate in a
|
|
|
|
secure manner through client-server mutual authentication via tickets.")
|
|
|
|
(license license:gpl3+)))
|
2017-01-18 12:31:36 +00:00
|
|
|
|
|
|
|
(define-public heimdal
|
|
|
|
(package
|
|
|
|
(name "heimdal")
|
|
|
|
(version "1.5.3")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://www.h5l.org/dist/src/heimdal-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"19gypf9vzfrs2bw231qljfl4cqc1riyg0ai0xmm1nd1wngnpphma"))
|
2017-07-20 19:30:12 +00:00
|
|
|
(patches (search-patches "heimdal-CVE-2017-6594.patch"
|
|
|
|
"heimdal-CVE-2017-11103.patch"))
|
2017-01-18 12:31:36 +00:00
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
'(substitute* "configure"
|
|
|
|
(("User=.*$") "User=Guix\n")
|
|
|
|
(("Date=.*$") "Date=2017\n")))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:configure-flags (list
|
|
|
|
;; Work around a linker error.
|
|
|
|
"CFLAGS=-pthread"
|
|
|
|
|
|
|
|
;; Avoid 7 MiB of .a files.
|
|
|
|
"--disable-static"
|
|
|
|
|
|
|
|
;; Do not build libedit.
|
|
|
|
(string-append
|
|
|
|
"--with-readline-lib="
|
|
|
|
(assoc-ref %build-inputs "readline") "/lib")
|
|
|
|
(string-append
|
|
|
|
"--with-readline-include="
|
|
|
|
(assoc-ref %build-inputs "readline") "/include"))
|
|
|
|
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
(add-before 'check 'skip-tests
|
|
|
|
(lambda _
|
|
|
|
;; The test simply runs 'ftp --version && ftp --help'
|
|
|
|
;; but that fails in the chroot because 'ftp' tries to
|
|
|
|
;; do a service lookup before printing the help/version.
|
|
|
|
(substitute* "appl/ftp/ftp/Makefile.in"
|
|
|
|
(("^CHECK_LOCAL =.*")
|
|
|
|
"CHECK_LOCAL = no-check-local\n"))
|
|
|
|
#t)))))
|
|
|
|
(native-inputs `(("e2fsprogs" ,e2fsprogs))) ;for 'compile_et'
|
|
|
|
(inputs `(("readline" ,readline)
|
|
|
|
("bdb" ,bdb)
|
|
|
|
("e2fsprogs" ,e2fsprogs))) ;for libcom_err
|
|
|
|
(home-page "http://www.h5l.org/")
|
|
|
|
(synopsis "Kerberos 5 network authentication")
|
|
|
|
(description
|
|
|
|
"Heimdal is an implementation of Kerberos 5 network authentication
|
|
|
|
service.")
|
|
|
|
(license license:bsd-3)))
|