diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-09-28 22:26:06 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-09-29 17:36:10 +0200 |
commit | 84a1b00700288d263112bf169216e086a8200861 (patch) | |
tree | b0df30b671b87a040f4a2aa43426c06674136c11 /gnu | |
parent | 5754f0cfb58f64592a6fad3fa74e7354cf187caf (diff) | |
download | patches-84a1b00700288d263112bf169216e086a8200861.tar patches-84a1b00700288d263112bf169216e086a8200861.tar.gz |
gnu: libgee: Don't use NAME in source URI.
* gnu/packages/gnome.scm (libgee)[source]: Hard-code NAME.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 38339feef0..f98e06118d 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -4607,9 +4607,9 @@ wraps things up in a developer-friendly way.") (version "0.20.1") (source (origin (method url-fetch) - (uri (string-append "mirror://gnome/sources/" name "/" + (uri (string-append "mirror://gnome/sources/libgee/" (version-major+minor version) "/" - name "-" version ".tar.xz")) + "libgee-" version ".tar.xz")) (sha256 (base32 "0c26x8gi3ivmhlbqcmiag4jwrkvcy28ld24j55nqr3jikb904a5v")))) |