guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/04: gnu: jq: Update sources.


From: guix-commits
Subject: 04/04: gnu: jq: Update sources.
Date: Thu, 16 May 2019 21:06:07 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 8731a4aaffa7ff7b9378f8344ecbe75eeadce266
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Fri May 17 02:43:15 2019 +0200

    gnu: jq: Update sources.
    
    * gnu/packages/web.scm (jq)[source]: Update sha256.  Add snippet to
    remove newly-bundled onigurama.
---
 gnu/packages/web.scm | 22 ++++++++++++++--------
 1 file changed, 14 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index d9e4cb0..08339d1 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -4038,14 +4038,20 @@ It uses the uwsgi protocol for all the 
networking/interprocess communications.")
   (package
     (name "jq")
     (version "1.6")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/stedolan/jq";
-                                  "/releases/download/jq-" version
-                                  "/jq-" version ".tar.gz"))
-              (sha256
-               (base32
-                "1a76f46a652i2g333kfvrl6mp2w7whf6h1yly519izg4y967h9cn"))))
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/stedolan/jq";
+                           "/releases/download/jq-" version
+                           "/jq-" version ".tar.gz"))
+       (sha256
+        (base32 "0wmapfskhzfwranf6515nzmm84r7kwljgfs7dg6bjgxakbicis2x"))
+       (modules '((guix build utils)))
+       (snippet
+        '(begin
+           ;; Remove bundled onigurama.
+           (delete-file-recursively "modules")
+           #t))))
     (inputs
      `(("oniguruma" ,oniguruma)))
     (native-inputs



reply via email to

[Prev in Thread] Current Thread [Next in Thread]