2013-01-06 00:47:50 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2013-01-20 22:29:55 +01: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 09:57:43 +01:00
|
|
|
;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
|
2016-08-23 05:14:06 +02:00
|
|
|
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
|
2016-08-29 22:51:12 +02: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 09:57:43 +01:00
|
|
|
;;; Copyright © 2012, 2013 Nikita Karetnikov <nikita@karetnikov.org>
|
2017-01-18 13:31:36 +01:00
|
|
|
;;; Copyright © 2012, 2017 Ludovic Courtès <ludo@gnu.org>
|
2012-12-30 00:08:46 +01:00
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
;;; This file is part of GNU Guix.
|
2012-12-30 00:08:46 +01:00
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-12-30 00:08:46 +01: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-06 00:47:50 +01:00
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
2012-12-30 00:08:46 +01: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-06 00:47:50 +01:00
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-12-30 00:08:46 +01: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 09:57:43 +01:00
|
|
|
(define-module (gnu packages kerberos)
|
2013-01-18 01:06:47 +01:00
|
|
|
#:use-module (gnu packages)
|
2013-01-18 01:06:24 +01:00
|
|
|
#:use-module (gnu packages bison)
|
|
|
|
#:use-module (gnu packages perl)
|
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 09:57:43 +01: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 13:31:36 +01:00
|
|
|
#:use-module (gnu packages databases)
|
|
|
|
#:use-module (gnu packages readline)
|
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 09:57:43 +01:00
|
|
|
#:use-module (gnu packages tls)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2012-12-30 00:08:46 +01:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2015-11-09 04:37:33 +01:00
|
|
|
#:use-module (guix utils)
|
2012-12-30 00:08:46 +01:00
|
|
|
#:use-module (guix build-system gnu))
|
|
|
|
|
|
|
|
(define-public mit-krb5
|
|
|
|
(package
|
2013-11-26 22:31:22 +01:00
|
|
|
(name "mit-krb5")
|
2016-11-23 00:02:52 +01:00
|
|
|
(version "1.14.3")
|
2013-11-26 22:31:22 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
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 08:02:20 +01:00
|
|
|
(uri (string-append "http://web.mit.edu/kerberos/dist/krb5/"
|
2015-11-09 04:37:33 +01:00
|
|
|
(version-major+minor version)
|
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 08:02:20 +01:00
|
|
|
"/krb5-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-11-23 00:02:52 +01:00
|
|
|
"1jgjiyh1sp72lkxvk437lz5hzcibvw99jc4ihzfz03fg43aj0ind"))))
|
2013-11-26 22:31:22 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
2015-11-09 05:00:28 +01: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 08:02:20 +01:00
|
|
|
("perl" ,perl)))
|
2013-11-26 22:31:22 +01:00
|
|
|
(arguments
|
2016-06-14 21:20:30 +02:00
|
|
|
`(;; Work around "No rule to make target '../../include/gssapi/gssapi.h',
|
|
|
|
;; needed by 'authgss_prot.so'."
|
|
|
|
#:parallel-build? #f
|
|
|
|
|
|
|
|
;; Likewise with tests.
|
|
|
|
#:parallel-tests? #f
|
|
|
|
|
2016-06-30 10:47:24 +02:00
|
|
|
;; XXX: On 32-bit systems, 'kdb5_util' hangs on an fcntl/F_SETLKW call
|
|
|
|
;; while running the tests in 'src/tests'.
|
|
|
|
#:tests? ,(string=? (%current-system) "x86_64-linux")
|
2016-06-28 14:10:02 +02:00
|
|
|
|
2016-06-14 21:20:30 +02:00
|
|
|
#:phases
|
2015-11-09 04:37:33 +01: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 08:02:20 +01:00
|
|
|
(add-after 'unpack 'enter-source-directory
|
2015-11-09 04:37:33 +01: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"))
|
|
|
|
(("D/bin/sh") (string-append "D" (which "bash")))
|
|
|
|
(("bindir=/bin/.") (string-append "bindir=" perl "/bin"))))
|
|
|
|
|
|
|
|
;; avoid service names since /etc/services is unavailable
|
2013-11-26 22:31:22 +01:00
|
|
|
(substitute* "tests/resolve/Makefile"
|
|
|
|
(("-p telnet") "-p 23"))
|
2015-11-09 04:37:33 +01:00
|
|
|
#t)))))
|
2013-11-26 22:31:22 +01:00
|
|
|
(synopsis "MIT Kerberos 5")
|
|
|
|
(description
|
|
|
|
"Massachusetts Institute of Technology implementation of Kerberos.
|
2012-12-30 00:08:46 +01: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 14:16:07 +02: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 09:57:43 +01:00
|
|
|
(license (license:non-copyleft "file://NOTICE"
|
|
|
|
"See NOTICE in the distribution."))
|
2013-11-26 22:31:22 +01:00
|
|
|
(home-page "http://web.mit.edu/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 09:57:43 +01: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"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"032qf72cpjdfffq1yq54gz3ahgqf2ijca4vl31sfabmjzq9q370d"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("gnutls" ,gnutls)
|
|
|
|
("libidn" ,libidn)
|
|
|
|
("linux-pam" ,linux-pam-1.2)
|
|
|
|
("zlib" ,zlib)
|
|
|
|
;; libgcrypt 1.6 fails because of the following test:
|
|
|
|
;; #include <gcrypt.h>
|
|
|
|
;; /* GCRY_MODULE_ID_USER was added in 1.4.4 and gc-libgcrypt.c
|
|
|
|
;; will fail on startup if we don't have 1.4.4 or later, so
|
|
|
|
;; test for it early. */
|
|
|
|
;; #if !defined GCRY_MODULE_ID_USER
|
|
|
|
;; error too old libgcrypt
|
|
|
|
;; #endif
|
|
|
|
("libgcrypt" ,libgcrypt-1.5)
|
|
|
|
("libtasn1" ,libtasn1)))
|
|
|
|
(home-page "http://www.gnu.org/software/shishi/")
|
|
|
|
(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 13:31:36 +01: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"))
|
|
|
|
(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)))
|