mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add nettle-3.7.
While nettle cannot be upgraded wholesale on the master branch, we can at least also offer the latest version available. * gnu/packages/nettle.scm (nettle-3.5, nettle-3.7): New variables. (nettle): Redefine as a binding to nettle-3.5, which is the current version.
This commit is contained in:
parent
0b25557bea
commit
cf86b9af53
1 changed files with 16 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
||||||
;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -71,7 +72,7 @@ (define-public nettle-2
|
||||||
themselves.")
|
themselves.")
|
||||||
(license gpl2+)))
|
(license gpl2+)))
|
||||||
|
|
||||||
(define-public nettle
|
(define-public nettle-3.5
|
||||||
;; This version is not API-compatible with version 2. In particular, lsh
|
;; This version is not API-compatible with version 2. In particular, lsh
|
||||||
;; cannot use it yet. So keep it separate.
|
;; cannot use it yet. So keep it separate.
|
||||||
(package (inherit nettle-2)
|
(package (inherit nettle-2)
|
||||||
|
@ -89,3 +90,17 @@ (define-public nettle
|
||||||
;; Build "fat" binaries where the right implementation is chosen
|
;; Build "fat" binaries where the right implementation is chosen
|
||||||
;; at run time based on CPU features (starting from 3.1.)
|
;; at run time based on CPU features (starting from 3.1.)
|
||||||
`(cons "--enable-fat" ,flags))))))
|
`(cons "--enable-fat" ,flags))))))
|
||||||
|
|
||||||
|
(define-public nettle-3.7
|
||||||
|
(package (inherit nettle-3.5)
|
||||||
|
(version "3.7.2")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://gnu/nettle/nettle-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0qpi1qp3bcvqdsaxy2pzg530db95x8qjahkynxgwvr6dy5760ald"))))))
|
||||||
|
|
||||||
|
;;; Upgrading Nettle on master would cause 10000+ packages to be rebuilt.
|
||||||
|
(define-public nettle nettle-3.5)
|
||||||
|
|
Loading…
Reference in a new issue