2013-01-06 00:47:50 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2015-04-09 18:32:32 +02:00
|
|
|
;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
2016-02-04 07:32:28 +01:00
|
|
|
;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
|
2012-11-13 21:43:30 +01:00
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
;;; This file is part of GNU Guix.
|
2012-11-13 21:43:30 +01:00
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-11-13 21:43:30 +01:00
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
2012-11-13 21:43:30 +01:00
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
2013-01-06 00:47:50 +01:00
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-11-13 21:43:30 +01:00
|
|
|
|
2013-01-18 01:06:24 +01:00
|
|
|
(define-module (gnu packages nettle)
|
2015-04-09 18:42:08 +02:00
|
|
|
#:use-module (guix utils)
|
distro: Use (guix licenses) instead of strings.
* distro/packages/acl.scm, distro/packages/attr.scm,
distro/packages/autotools.scm, distro/packages/base.scm,
distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/bison.scm, distro/packages/bootstrap.scm,
distro/packages/compression.scm, distro/packages/cpio.scm,
distro/packages/ddrescue.scm, distro/packages/ed.scm,
distro/packages/flex.scm, distro/packages/gawk.scm,
distro/packages/gdbm.scm, distro/packages/gettext.scm,
distro/packages/gnupg.scm, distro/packages/gnutls.scm,
distro/packages/gperf.scm, distro/packages/guile.scm,
distro/packages/help2man.scm, distro/packages/less.scm,
distro/packages/libffi.scm, distro/packages/libsigsegv.scm,
distro/packages/libunistring.scm, distro/packages/linux.scm,
distro/packages/lout.scm, distro/packages/lsh.scm,
distro/packages/m4.scm, distro/packages/multiprecision.scm,
distro/packages/nano.scm, distro/packages/ncurses.scm,
distro/packages/nettle.scm, distro/packages/perl.scm,
distro/packages/pkg-config.scm, distro/packages/pth.scm,
distro/packages/readline.scm, distro/packages/recutils.scm,
distro/packages/shishi.scm, distro/packages/system.scm,
distro/packages/texinfo.scm, distro/packages/time.scm,
distro/packages/wget.scm, distro/packages/which.scm,
distro/packages/zile.scm: Use (guix licenses).
2012-12-14 16:14:04 +01:00
|
|
|
#:use-module (guix licenses)
|
2012-11-13 21:43:30 +01:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix build-system gnu)
|
2013-01-18 01:06:24 +01:00
|
|
|
#:use-module (gnu packages multiprecision)
|
|
|
|
#:use-module (gnu packages m4))
|
2012-11-13 21:43:30 +01:00
|
|
|
|
2015-04-09 18:32:32 +02:00
|
|
|
(define-public nettle-2
|
2012-11-13 21:43:30 +01:00
|
|
|
(package
|
|
|
|
(name "nettle")
|
2013-06-05 10:26:17 +02:00
|
|
|
(version "2.7.1")
|
2013-01-17 13:57:30 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/nettle/nettle-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-06-05 10:26:17 +02:00
|
|
|
"0h2vap31yvi1a438d36lg1r1nllfx3y19r4rfxv7slrm6kafnwdw"))))
|
2012-11-13 21:43:30 +01:00
|
|
|
(build-system gnu-build-system)
|
2014-01-04 16:59:46 +01:00
|
|
|
(arguments
|
|
|
|
;; 'sexp-conv' and other programs need to have their RUNPATH point to
|
|
|
|
;; $libdir, which is not the case by default. Work around it.
|
|
|
|
'(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/lib"))))
|
2015-04-12 21:27:54 +02:00
|
|
|
(outputs '("out" "debug"))
|
2014-01-04 16:59:46 +01:00
|
|
|
(native-inputs `(("m4" ,m4)))
|
2012-11-13 21:43:30 +01:00
|
|
|
(propagated-inputs `(("gmp" ,gmp)))
|
2016-11-27 08:44:48 +01:00
|
|
|
(home-page "https://www.lysator.liu.se/~nisse/nettle/")
|
2013-12-01 22:33:23 +01:00
|
|
|
(synopsis "C library for low-level cryptographic functionality")
|
2012-11-13 21:43:30 +01:00
|
|
|
(description
|
2013-12-01 22:33:23 +01:00
|
|
|
"GNU Nettle is a low-level cryptographic library. It is designed to
|
|
|
|
fit in easily in almost any context. It can be easily included in
|
|
|
|
cryptographic toolkits for object-oriented languages or in applications
|
|
|
|
themselves.")
|
distro: Use (guix licenses) instead of strings.
* distro/packages/acl.scm, distro/packages/attr.scm,
distro/packages/autotools.scm, distro/packages/base.scm,
distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/bison.scm, distro/packages/bootstrap.scm,
distro/packages/compression.scm, distro/packages/cpio.scm,
distro/packages/ddrescue.scm, distro/packages/ed.scm,
distro/packages/flex.scm, distro/packages/gawk.scm,
distro/packages/gdbm.scm, distro/packages/gettext.scm,
distro/packages/gnupg.scm, distro/packages/gnutls.scm,
distro/packages/gperf.scm, distro/packages/guile.scm,
distro/packages/help2man.scm, distro/packages/less.scm,
distro/packages/libffi.scm, distro/packages/libsigsegv.scm,
distro/packages/libunistring.scm, distro/packages/linux.scm,
distro/packages/lout.scm, distro/packages/lsh.scm,
distro/packages/m4.scm, distro/packages/multiprecision.scm,
distro/packages/nano.scm, distro/packages/ncurses.scm,
distro/packages/nettle.scm, distro/packages/perl.scm,
distro/packages/pkg-config.scm, distro/packages/pth.scm,
distro/packages/readline.scm, distro/packages/recutils.scm,
distro/packages/shishi.scm, distro/packages/system.scm,
distro/packages/texinfo.scm, distro/packages/time.scm,
distro/packages/wget.scm, distro/packages/which.scm,
distro/packages/zile.scm: Use (guix licenses).
2012-12-14 16:14:04 +01:00
|
|
|
(license gpl2+)))
|
2014-06-25 11:20:55 +02:00
|
|
|
|
2015-04-09 18:32:32 +02:00
|
|
|
(define-public nettle
|
2015-06-10 23:49:11 +02:00
|
|
|
;; This version is not API-compatible with version 2. In particular, lsh
|
2014-06-25 11:20:55 +02:00
|
|
|
;; cannot use it yet. So keep it separate.
|
2015-04-09 18:32:32 +02:00
|
|
|
(package (inherit nettle-2)
|
2016-11-27 08:44:48 +01:00
|
|
|
(version "3.3")
|
2014-06-25 11:20:55 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/nettle/nettle-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-11-27 08:44:48 +01:00
|
|
|
"07mif3af077763vc35s1x8vzhzlgqcgxh67c1xr13jnhslkjd526"))))
|
2015-04-09 18:42:08 +02:00
|
|
|
(arguments
|
2016-02-04 07:32:28 +01:00
|
|
|
(substitute-keyword-arguments (package-arguments nettle-2)
|
|
|
|
((#:configure-flags flags)
|
|
|
|
;; Build "fat" binaries where the right implementation is chosen
|
|
|
|
;; at run time based on CPU features (starting from 3.1.)
|
|
|
|
`(cons "--enable-fat" ,flags))))))
|