gnu: parallel: Upgrade to 20140622.
[jackhill/guix/guix.git] / gnu / packages / nettle.scm
CommitLineData
233e7676 1;;; GNU Guix --- Functional package management for GNU
64cc58b2 2;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org>
2e659827 3;;;
233e7676 4;;; This file is part of GNU Guix.
2e659827 5;;;
233e7676 6;;; GNU Guix is free software; you can redistribute it and/or modify it
2e659827
LC
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
2e659827
LC
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/>.
2e659827 18
1ffa7090 19(define-module (gnu packages nettle)
4a44e743 20 #:use-module (guix licenses)
2e659827
LC
21 #:use-module (guix packages)
22 #:use-module (guix download)
23 #:use-module (guix build-system gnu)
1ffa7090
LC
24 #:use-module (gnu packages multiprecision)
25 #:use-module (gnu packages m4))
2e659827
LC
26
27(define-public nettle
28 (package
29 (name "nettle")
b17fd5e0 30 (version "2.7.1")
2a6c6795
LC
31 (source (origin
32 (method url-fetch)
33 (uri (string-append "mirror://gnu/nettle/nettle-"
34 version ".tar.gz"))
35 (sha256
36 (base32
b17fd5e0 37 "0h2vap31yvi1a438d36lg1r1nllfx3y19r4rfxv7slrm6kafnwdw"))))
2e659827 38 (build-system gnu-build-system)
64cc58b2
LC
39 (arguments
40 ;; 'sexp-conv' and other programs need to have their RUNPATH point to
41 ;; $libdir, which is not the case by default. Work around it.
42 '(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
43 (assoc-ref %outputs "out")
44 "/lib"))))
45 (native-inputs `(("m4" ,m4)))
2e659827 46 (propagated-inputs `(("gmp" ,gmp)))
2a6c6795 47 (home-page "http://www.lysator.liu.se/~nisse/nettle/")
79c311b8 48 (synopsis "C library for low-level cryptographic functionality")
2e659827 49 (description
79c311b8
LC
50 "GNU Nettle is a low-level cryptographic library. It is designed to
51fit in easily in almost any context. It can be easily included in
52cryptographic toolkits for object-oriented languages or in applications
53themselves.")
4a44e743 54 (license gpl2+)))