diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-15 17:58:31 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-15 20:30:43 +0100 |
commit | 079321fac1ad41d93f20f2f16fde13198ab84fcc (patch) | |
tree | 1800239e11e02ca3b513039b968037f820f8bd5a /gnu/packages/xml.scm | |
parent | 62321a55de1240d77ad3ccb526fe87ecae7c30ba (diff) | |
download | guix-079321fac1ad41d93f20f2f16fde13198ab84fcc.tar guix-079321fac1ad41d93f20f2f16fde13198ab84fcc.tar.gz |
gnu: libebml: Don't use NAME in source URI.
* gnu/packages/xml.scm (libebml)[source]: Hard-code NAME.
Diffstat (limited to 'gnu/packages/xml.scm')
-rw-r--r-- | gnu/packages/xml.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index ff3cf8d356..698680f075 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -92,8 +92,8 @@ things the parser might find in the XML document (like start tags).") (source (origin (method url-fetch) - (uri (string-append "https://dl.matroska.org/downloads/" - name "/" name "-" version ".tar.xz")) + (uri (string-append "https://dl.matroska.org/downloads/libebml/" + "libebml-" version ".tar.xz")) (sha256 (base32 "17iynkj22rbszaymxiaq6k02qy9w4fs1appkn1iam4y441w7lnhy")) |