Synchronize package descriptions with the Womb.
[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)
5b2fd618 46 ("libgcrypt" ,libgcrypt)
cbca6eb5 47 ("libtasn1" ,libtasn1)))
5b2fd618 48 (home-page "http://www.gnu.org/software/shishi/")
f50d2669 49 (synopsis "Implementation of the Kerberos 5 network security system")
5b2fd618 50 (description
a22dc0c4
LC
51 "Shishi is a free implementation of the Kerberos 5 network security
52system. It is used to allow non-secure network nodes to communicate in a
53secure manner through client-server mutual authentication via tickets.")
cbca6eb5 54 (license gpl3+)))