diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-09-11 00:11:24 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-09-11 00:33:51 +0200 |
commit | c1b79b36524d38b80f7ed7e139a231dbb928833f (patch) | |
tree | 739ca2354cef1b2c8f426d5df871c1b4d0823929 /gnu/packages/gnome.scm | |
parent | b5b0fd23548ac06e5c5ce3f890218579605ef024 (diff) | |
download | guix-c1b79b36524d38b80f7ed7e139a231dbb928833f.tar guix-c1b79b36524d38b80f7ed7e139a231dbb928833f.tar.gz |
gnu: libsoup: Don't use NAME in source URI.
* gnu/packages/gnome.scm (libsoup)[source]: Hard-code NAME.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index f002ff17b7..562f2981e9 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2701,7 +2701,7 @@ libxml to ease remote use of the RESTful API.") (method url-fetch) (uri (string-append "mirror://gnome/sources/libsoup/" (version-major+minor version) "/" - name "-" version ".tar.xz")) + "libsoup-" version ".tar.xz")) (sha256 (base32 "0amfw1yvy1kjrg41rfh2vvrw5gkwnyckqbw1fab50hm6xc1acbmx")))) |