diff options
author | Martin Becze <mjbecze@riseup.net> | 2020-02-23 04:27:42 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-03-24 15:44:45 +0100 |
commit | b488b64a3e22dae272a41990384fc74ddafef86c (patch) | |
tree | 96dc6699880c3397ee1c51613bf290d56d0aa2f5 /gnu/packages/guile-xyz.scm | |
parent | 08d5341b1f8cc129f545ca6c62e36e06e17091bf (diff) | |
download | patches-b488b64a3e22dae272a41990384fc74ddafef86c.tar patches-b488b64a3e22dae272a41990384fc74ddafef86c.tar.gz |
gnu: Add guile3.0-semver.
* gnu/packages/guile-xyz.scm (guile3.0-semver): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/guile-xyz.scm')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index a2430b7ea3..09427da487 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -23,6 +23,7 @@ ;;; Copyright © 2019 swedebugia <swedebugia@riseup.net> ;;; Copyright © 2019, 2020 Amar Singh <nly@disroot.org> ;;; Copyright © 2019 Timothy Sample <samplet@ngyro.com> +;;; Copyright © 2019 Martin Becze <mjbecze@riseup.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -2996,6 +2997,13 @@ comparing, and writing Semantic Versions. It also includes ranges in the style of the Node Package Manager (NPM).") (license license:gpl3+))) +(define-public guile3.0-semver + (package + (inherit guile-semver) + (name "guile3.0-semver") + (inputs + `(("guile" ,guile-3.0))))) + (define-public guile-hashing (package (name "guile-hashing") |