guix build: Add '--max-jobs' option.
[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>
3aa6fab8 3;;;
233e7676 4;;; This file is part of GNU Guix.
3aa6fab8 5;;;
233e7676 6;;; GNU Guix is free software; you can redistribute it and/or modify it
3aa6fab8
AE
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
233e7676 11;;; GNU Guix is distributed in the hope that it will be useful, but
3aa6fab8
AE
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
233e7676 17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
3aa6fab8 18
1ffa7090 19(define-module (gnu packages gsasl)
59a43334 20 #:use-module (gnu packages)
b5b73a82 21 #:use-module ((gnu packages compression) #:prefix guix:)
1ffa7090
LC
22 #:use-module (gnu packages gnutls)
23 #:use-module (gnu packages libidn)
24 #:use-module (gnu packages nettle)
25 #:use-module (gnu packages shishi)
3aa6fab8
AE
26 #:use-module (guix licenses)
27 #:use-module (guix packages)
28 #:use-module (guix download)
29 #:use-module (guix build-system gnu))
30
31(define-public libntlm
32 (package
33 (name "libntlm")
34 (version "1.3")
35 (source (origin
36 (method url-fetch)
37 (uri (string-append "http://www.nongnu.org/libntlm/releases/libntlm-" version
38 ".tar.gz"))
39 (sha256 (base32
40 "101pr110ardcj2di940g6vaqifsaxc44h6hjn81l63dvmkj5a6ga"))))
41 (build-system gnu-build-system)
35b9e423 42 (synopsis "Library that implements NTLM authentication")
3aa6fab8
AE
43 (description
44 "Libntlm is a library that implements NTLM authentication")
45 (license lgpl2.1+)
46 (home-page "http://www.nongnu.org/libntlm/")))
47
48(define-public gss
49 (package
50 (name "gss")
51 (version "1.0.2")
52 (source (origin
53 (method url-fetch)
54 (uri (string-append "mirror://gnu/gss/gss-" version
55 ".tar.gz"))
56 (sha256 (base32
57 "1qa8lbkzi6ilfggx7mchfzjnchvhwi68rck3jf9j4425ncz7zsd9"))))
58 (build-system gnu-build-system)
59 (inputs `(("nettle" ,nettle)
60 ("shishi" ,shishi)
61 ("zlib" ,guix:zlib)
62 ))
f50d2669 63 (synopsis "Generic Security Service library")
3aa6fab8 64 (description
a22dc0c4
LC
65 "The GNU Generic Security Service provides a free implementation of the
66GSS-API specification. It provides a generic application programming
35b9e423 67interface for programs to access security services. Security services present
a22dc0c4
LC
68a generic, GSS interface, with which the calling application interacts via
69this library, freeing the application developer from needing to know about
70the underlying security implementation.")
3aa6fab8
AE
71 (license gpl3+)
72 (home-page "http://www.gnu.org/software/gss/")))
73
74(define-public gsasl
75 (package
76 (name "gsasl")
77 (version "1.8.0")
78 (source (origin
79 (method url-fetch)
80 (uri (string-append "mirror://gnu/gsasl/gsasl-" version
81 ".tar.gz"))
82 (sha256 (base32
83 "1rci64cxvcfr8xcjpqc4inpfq7aw4snnsbf5xz7d30nhvv8n40ii"))))
84 (build-system gnu-build-system)
85 (inputs `(("libidn" ,libidn)
86 ("libntlm" ,libntlm)
3aa6fab8 87 ("gss" ,gss)
cc2792da
LC
88 ("zlib" ,guix:zlib)))
89 (propagated-inputs
90 ;; Propagate GnuTLS because libgnutls.la reads `-lnettle', and Nettle is a
91 ;; propagated input of GnuTLS.
92 `(("gnutls" ,gnutls)))
f50d2669 93 (synopsis "Simple Authentication and Security Layer library")
3aa6fab8 94 (description
a22dc0c4
LC
95 "GNU SASL is an implementation of the Simple Authentication and
96Security Layer framework. On network servers such as IMAP or SMTP servers,
97SASL is used to handle client/server authentication. This package contains
98both a library and a command-line tool to access the library.")
3aa6fab8
AE
99 (license gpl3+)
100 (home-page "http://www.gnu.org/software/gsasl/")))