gnu: calcurse: New module
[jackhill/guix/guix.git] / gnu / packages / shishi.scm
CommitLineData
233e7676 1;;; GNU Guix --- Functional package management for GNU
cbca6eb5 2;;; Copyright © 2012, 2013 Nikita Karetnikov <nikita@karetnikov.org>
233e7676 3;;; Copyright © 2012 Ludovic Courtès <ludo@gnu.org>
5b2fd618 4;;;
233e7676 5;;; This file is part of GNU Guix.
5b2fd618 6;;;
233e7676 7;;; GNU Guix is free software; you can redistribute it and/or modify it
5b2fd618
NK
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
233e7676 12;;; GNU Guix is distributed in the hope that it will be useful, but
5b2fd618
NK
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
233e7676 18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
5b2fd618 19
1ffa7090 20(define-module (gnu packages shishi)
cbca6eb5 21 #:use-module ((guix licenses) #:select (gpl3+))
59a43334 22 #:use-module (gnu packages)
1ffa7090
LC
23 #:use-module (gnu packages gnutls)
24 #:use-module (gnu packages gnupg)
cbca6eb5 25 #:use-module (gnu packages compression)
5b2fd618
NK
26 #:use-module (guix packages)
27 #:use-module (guix download)
28 #:use-module (guix build-system gnu))
29
30(define-public shishi
31 (package
32 (name "shishi")
cbca6eb5 33 (version "1.0.2")
5b2fd618
NK
34 (source
35 (origin
36 (method url-fetch)
cbca6eb5
NK
37 (uri (string-append "mirror://gnu/shishi/shishi-"
38 version ".tar.gz"))
5b2fd618
NK
39 (sha256
40 (base32
cbca6eb5 41 "032qf72cpjdfffq1yq54gz3ahgqf2ijca4vl31sfabmjzq9q370d"))))
5b2fd618 42 (build-system gnu-build-system)
5b2fd618
NK
43 (inputs
44 `(("gnutls" ,gnutls)
cbca6eb5 45 ("zlib" ,zlib)
e1482035
AE
46 ;; libgcrypt 1.6 fails because of the following test:
47 ;; #include <gcrypt.h>
48 ;; /* GCRY_MODULE_ID_USER was added in 1.4.4 and gc-libgcrypt.c
49 ;; will fail on startup if we don't have 1.4.4 or later, so
50 ;; test for it early. */
51 ;; #if !defined GCRY_MODULE_ID_USER
52 ;; error too old libgcrypt
53 ;; #endif
54 ("libgcrypt" ,libgcrypt-1.5)
cbca6eb5 55 ("libtasn1" ,libtasn1)))
5b2fd618 56 (home-page "http://www.gnu.org/software/shishi/")
f50d2669 57 (synopsis "Implementation of the Kerberos 5 network security system")
5b2fd618 58 (description
79c311b8 59 "GNU Shishi is a free implementation of the Kerberos 5 network security
a22dc0c4
LC
60system. It is used to allow non-secure network nodes to communicate in a
61secure manner through client-server mutual authentication via tickets.")
cbca6eb5 62 (license gpl3+)))