summary refs log tree commit diff
path: root/gnu/packages/guile.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2020-08-06 10:03:33 +0300
committerEfraim Flashner <efraim@flashner.co.il>2020-08-06 10:03:33 +0300
commit327ebd55ca595aa3fac41139c906fbe05b5b6e0b (patch)
treed7db06aa51cd8115b2fbe60bf5b144212182e4b9 /gnu/packages/guile.scm
parenta220ed075808126ceb94b0f8cc681b323d31192d (diff)
downloadguix-327ebd55ca595aa3fac41139c906fbe05b5b6e0b.tar.gz
gnu:guile-json-1: Update to 1.3.2.
* gnu/packages/guile.scm (guile-json-1): Update to 1.3.2.
[arguments]: Add make-flag to supress guild warnings.
Diffstat (limited to 'gnu/packages/guile.scm')
-rw-r--r--gnu/packages/guile.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index ccfa753f37..03c1dd0872 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -513,7 +513,7 @@ GNU@tie{}Guile.  Use the @code{(ice-9 readline)} module and call its
 (define-public guile-json-1
   (package
     (name "guile-json")
-    (version "1.2.0")
+    (version "1.3.2")
     (home-page "https://github.com/aconchillo/guile-json")
     (source (origin
               (method url-fetch)
@@ -521,8 +521,10 @@ GNU@tie{}Guile.  Use the @code{(ice-9 readline)} module and call its
                                   version ".tar.gz"))
               (sha256
                (base32
-                "15gnb84d7hpazqhskkf3g9z4r6knw54wfj4ch5270kakz1lp70c9"))))
+                "0m6yzb169r6iz56k3nkncjaiijwi4p0x9ijn1p5ax3s77jklxy9k"))))
     (build-system gnu-build-system)
+    (arguments
+     `(#:make-flags '("GUILE_AUTO_COMPILE=0")))   ;to prevent guild warnings
     (native-inputs `(("pkg-config" ,pkg-config)
                      ("guile" ,guile-2.2)))
     (inputs `(("guile" ,guile-2.2)))