summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2018-11-06 15:10:51 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2018-11-06 15:34:36 +0100
commitc3b8300af321bbc56c5743ae53890e2184b0aa45 (patch)
tree9dd6b611cc36b96d7dbfa0347e514b8ee782f045
parent418dd6adb5de1bc26ff9bac1cb0dc7822be52112 (diff)
downloadguix-patches-c3b8300af321bbc56c5743ae53890e2184b0aa45.tar
guix-patches-c3b8300af321bbc56c5743ae53890e2184b0aa45.tar.gz
gnu: jq: Don't use NAME in source URI.
* gnu/packages/web.scm (jq)[source]: Code more hard.
-rw-r--r--gnu/packages/web.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 86e748f950..3203b258ad 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -4169,9 +4169,9 @@ It uses the uwsgi protocol for all the networking/interprocess communications.")
(version "1.6")
(source (origin
(method url-fetch)
- (uri (string-append "https://github.com/stedolan/" name
- "/releases/download/" name "-" version
- "/" name "-" version ".tar.gz"))
+ (uri (string-append "https://github.com/stedolan/jq"
+ "/releases/download/jq-" version
+ "/jq-" version ".tar.gz"))
(sha256
(base32
"1a76f46a652i2g333kfvrl6mp2w7whf6h1yly519izg4y967h9cn"))))