gnu: guile-hashing: Add variant for Guile 3.0.

* gnu/packages/guile-xyz.scm (guile3.0-hashing): New variable.
This commit is contained in:
Ludovic Courtès 2020-01-03 19:55:47 +01:00
parent d67fa5c824
commit f918a8d9d8
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2014, 2015, 2018 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2015, 2017 Christopher Allan Webber <cwebber@dustycloud.org>
;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
@ -2791,3 +2791,10 @@ the style of the Node Package Manager (NPM).")
functions in pure R6RS Scheme: CRC, HMAC, MD5, SHA-1, and SHA-2 (SHA-256,
SHA-512).")
(license license:expat)))
(define-public guile3.0-hashing
(package
(inherit guile-hashing)
(name "guile3.0-hashing")
(native-inputs
`(("guile" ,guile-next)))))