diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-01-14 17:21:55 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-14 23:43:49 +0100 |
commit | 152d4076a4b7022c7d8a8a4f78ef93d3780011ce (patch) | |
tree | 4d8c1eaa9ff5b786a450e6ff34f46055677ad4db | |
parent | 60029204eebada88063c2d3e2727e255ded22159 (diff) | |
download | patches-152d4076a4b7022c7d8a8a4f78ef93d3780011ce.tar patches-152d4076a4b7022c7d8a8a4f78ef93d3780011ce.tar.gz |
gnu: guile-json: Add 3.1.0.
* gnu/packages/guile.scm (guile-json-3): New variable.
-rw-r--r-- | gnu/packages/guile.scm | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index e14c23a1d2..b0ebc0aea8 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 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> @@ -941,6 +941,20 @@ specification. These are the main features: (define-public guile2.0-json (package-for-guile-2.0 guile-json)) +(define-public guile-json-3 + ;; This version is incompatible with 1.x; see the 'NEWS' file. + (package + (inherit guile-json) + (name "guile-json") + (version "3.1.0") + (source (origin + (method url-fetch) + (uri (string-append "https://download.savannah.nongnu.org/releases/" + name "/" name "-" version ".tar.gz")) + (sha256 + (base32 + "1yfqscz74i4vxylabd3s9l0wbdp8bg9qxnv1ixdm3b1l7zdx00z3")))))) + (define-public guile-minikanren (package (name "guile-minikanren") |