me
/
guix
Archived
1
0
Fork 0

gnu: Remove remnants of nettle 3.5.

The source of nettle-3.5 was already using the source of nettle-3.7.

* gnu/packages/nettle.scm
(nettle-3.5): Rename to 'nettle'.
(nettle-3.7): Remove variable.
(nettle): Remove alias.
master
Maxim Cournoyer 2021-06-05 02:09:03 -04:00
parent 5d547f74ed
commit 683eb7c5b1
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 1 additions and 15 deletions

View File

@ -72,7 +72,7 @@ cryptographic toolkits for object-oriented languages or in applications
themselves.")
(license gpl2+)))
(define-public nettle-3.5
(define-public nettle
;; This version is not API-compatible with version 2. In particular, lsh
;; cannot use it yet. So keep it separate.
(package (inherit nettle-2)
@ -90,17 +90,3 @@ themselves.")
;; Build "fat" binaries where the right implementation is chosen
;; at run time based on CPU features (starting from 3.1.)
`(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)