X-Git-Url: http://git.hcoop.net/jackhill/guix/guix.git/blobdiff_plain/bf76d98789a0fc6303c303beddbc1ed609f2a6ea..28791c1c8d43e14878f8cc67a15b6036699ec252:/gnu/packages/nettle.scm diff --git a/gnu/packages/nettle.scm b/gnu/packages/nettle.scm index 77c5080c0a..d1203dfe75 100644 --- a/gnu/packages/nettle.scm +++ b/gnu/packages/nettle.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès +;;; Copyright © 2016 Mark H Weaver ;;; ;;; This file is part of GNU Guix. ;;; @@ -59,17 +60,17 @@ themselves.") ;; This version is not API-compatible with version 2. In particular, lsh ;; cannot use it yet. So keep it separate. (package (inherit nettle-2) - (version "3.1.1") + (version "3.2") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/nettle/nettle-" version ".tar.gz")) (sha256 (base32 - "0k1x57zviysvi91lkk66cg8v819vywm5g5yqs22wppfqcifx5m2z")))) + "15wxhk52yc62rx0pddmry66hqm6z5brrrkx4npd3wh9nybg86hpa")))) (arguments (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.) + ;; Build "fat" binaries where the right implementation is chosen + ;; at run time based on CPU features (starting from 3.1.) `(cons "--enable-fat" ,flags))))))