gnu: plzip: Update to 1.7.
[jackhill/guix/guix.git] / gnu / packages / gsasl.scm
CommitLineData
233e7676
LC
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2012 Andreas Enge <andreas@enge.fr>
294739b5 3;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
3aa6fab8 4;;;
233e7676 5;;; This file is part of GNU Guix.
3aa6fab8 6;;;
233e7676 7;;; GNU Guix is free software; you can redistribute it and/or modify it
3aa6fab8
AE
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
3aa6fab8
AE
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/>.
3aa6fab8 19
1ffa7090 20(define-module (gnu packages gsasl)
59a43334 21 #:use-module (gnu packages)
f61e0e79 22 #:use-module (gnu packages compression)
1ffa7090
LC
23 #:use-module (gnu packages libidn)
24 #:use-module (gnu packages nettle)
89e34644 25 #:use-module (gnu packages kerberos)
a7fd7b68 26 #:use-module (gnu packages tls)
f61e0e79 27 #:use-module ((guix licenses) #:prefix license:)
3aa6fab8
AE
28 #:use-module (guix packages)
29 #:use-module (guix download)
30 #:use-module (guix build-system gnu))
31
32(define-public libntlm
33 (package
294739b5
RW
34 (name "libntlm")
35 (version "1.4")
36 (source (origin
37 (method url-fetch)
38 (uri (string-append "http://www.nongnu.org/libntlm/releases/"
39 "libntlm-" version ".tar.gz"))
40 (sha256
41 (base32
42 "129532iiip2cjr5h03bgz184v64v27sfm1r70v3ms4yk65gdf5c4"))))
43 (build-system gnu-build-system)
44 (synopsis "Library that implements NTLM authentication")
45 (description
46 "Libntlm is a library that implements NTLM authentication.")
47 (license license:lgpl2.1+)
48 (home-page "http://www.nongnu.org/libntlm/")))
3aa6fab8
AE
49
50(define-public gss
51 (package
52 (name "gss")
e43c2a0b 53 (version "1.0.3")
3aa6fab8
AE
54 (source (origin
55 (method url-fetch)
56 (uri (string-append "mirror://gnu/gss/gss-" version
57 ".tar.gz"))
58 (sha256 (base32
e43c2a0b 59 "1syyvh3k659xf1hdv9pilnnhbbhs6vfapayp4xgdcc8mfgf9v4gz"))))
3aa6fab8
AE
60 (build-system gnu-build-system)
61 (inputs `(("nettle" ,nettle)
62 ("shishi" ,shishi)
f61e0e79 63 ("zlib" ,zlib)))
f50d2669 64 (synopsis "Generic Security Service library")
3aa6fab8 65 (description
a22dc0c4
LC
66 "The GNU Generic Security Service provides a free implementation of the
67GSS-API specification. It provides a generic application programming
35b9e423 68interface for programs to access security services. Security services present
a22dc0c4
LC
69a generic, GSS interface, with which the calling application interacts via
70this library, freeing the application developer from needing to know about
71the underlying security implementation.")
f61e0e79 72 (license license:gpl3+)
6fd52309 73 (home-page "https://www.gnu.org/software/gss/")))
3aa6fab8
AE
74
75(define-public gsasl
76 (package
77 (name "gsasl")
78 (version "1.8.0")
79 (source (origin
80 (method url-fetch)
81 (uri (string-append "mirror://gnu/gsasl/gsasl-" version
82 ".tar.gz"))
83 (sha256 (base32
84 "1rci64cxvcfr8xcjpqc4inpfq7aw4snnsbf5xz7d30nhvv8n40ii"))))
85 (build-system gnu-build-system)
86 (inputs `(("libidn" ,libidn)
87 ("libntlm" ,libntlm)
3aa6fab8 88 ("gss" ,gss)
f61e0e79 89 ("zlib" ,zlib)))
cc2792da
LC
90 (propagated-inputs
91 ;; Propagate GnuTLS because libgnutls.la reads `-lnettle', and Nettle is a
92 ;; propagated input of GnuTLS.
93 `(("gnutls" ,gnutls)))
f50d2669 94 (synopsis "Simple Authentication and Security Layer library")
3aa6fab8 95 (description
a22dc0c4
LC
96 "GNU SASL is an implementation of the Simple Authentication and
97Security Layer framework. On network servers such as IMAP or SMTP servers,
98SASL is used to handle client/server authentication. This package contains
99both a library and a command-line tool to access the library.")
f61e0e79 100 (license license:gpl3+)
6fd52309 101 (home-page "https://www.gnu.org/software/gsasl/")))