diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-10-12 15:41:58 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-10-12 16:29:49 +0200 |
commit | bf92ba6b7bfe91c529195a500eb10ff173f4b5ad (patch) | |
tree | 8a71f4be6fe1a804986ee5447a5e0e22225475d5 | |
parent | 09c4e43f81eb765997b8861fc07dcc94bc4644d2 (diff) | |
download | guix-bf92ba6b7bfe91c529195a500eb10ff173f4b5ad.tar guix-bf92ba6b7bfe91c529195a500eb10ff173f4b5ad.tar.gz |
gnu: amtk: Don't use NAME in source URI.
* gnu/packages/gnome.scm (amtk)[source]: Hard-code NAME.
-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 ec8a208f64..91a781bfba 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3410,9 +3410,9 @@ which are easy to play with the aid of a mouse.") (version "5.0.1") (source (origin (method url-fetch) - (uri (string-append "mirror://gnome/sources/" name "/" + (uri (string-append "mirror://gnome/sources/amtk/" (version-major+minor version) "/" - name "-" version ".tar.xz")) + "amtk-" version ".tar.xz")) (sha256 (base32 "09yy95w1s83c43mh9vha1jbb780yighf5pd2j0ygjmc68sjg871d")))) |