gnu: guile-json: Update to 1.0.1.

* gnu/packages/guile.scm (guile-json): Update to 1.0.1.
[source]: Switch to github.com.  Adjust 'snippet' to modify
'configure.ac' and 'Makefile.am'.
[native-inputs]: Add AUTOCONF and AUTOMAKE.
This commit is contained in:
Ludovic Courtès 2018-06-02 15:28:12 +02:00
parent e0f8970357
commit f52ef55e2b
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -814,29 +814,33 @@ (define-public guile2.2-lib
(define-public guile-json
(package
(name "guile-json")
(version "0.6.0")
(version "1.0.1")
(home-page "https://github.com/aconchillo/guile-json")
(source (origin
(method url-fetch)
(uri (string-append "mirror://savannah/guile-json/guile-json-"
(uri (string-append home-page "/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1qmjg7lbgciw95fkdzvlp9f68vv17kdjky42ywfzd4ffzwww0lgc"))
"16155dv30rhagz6dwv7xc87l386i8v0f1kgydqa2ajr166fi9qhr"))
(modules '((guix build utils)))
(snippet
;; Make sure everything goes under .../site/X.Y, like Guile's
;; search paths expects.
'(begin
(substitute* "configure"
(("ac_subst_vars='")
"ac_subst_vars='GUILE_EFFECTIVE_VERSION\n"))
(substitute* '("Makefile.in" "json/Makefile.in")
(("moddir =.*/share/guile/site" all)
(string-append all "/@GUILE_EFFECTIVE_VERSION@")))
#t))))
(substitute* "configure.ac"
(("GUILE_PROGS")
(string-append "GUILE_PROGS\n"
"AC_SUBST([GUILE_EFFECTIVE_VERSION])\n")))
(substitute* '("Makefile.am" "json/Makefile.am")
(("moddir[[:blank:]]*=.*/share/guile/site" all)
(string-append all "/@GUILE_EFFECTIVE_VERSION@")))))))
(build-system gnu-build-system)
(native-inputs `(("guile" ,guile-2.2)))
(home-page "https://savannah.nongnu.org/projects/guile-json/")
(native-inputs `(("autoconf" ,autoconf)
("automake" ,automake)
("guile" ,guile-2.2)))
(inputs `(("guile" ,guile-2.2)))
(synopsis "JSON module for Guile")
(description
"Guile-JSON supports parsing and building JSON documents according to the