diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-26 13:38:24 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-27 15:48:51 +0100 |
commit | f3b88ed26ca9950ea52941e85ad746ce3d04a68f (patch) | |
tree | 62b51290580e66237b9bb57db78e00042cb17d2f | |
parent | fbc930ec63af9a8b5942270b3e2f5b81533253f6 (diff) | |
download | gnu-guix-f3b88ed26ca9950ea52941e85ad746ce3d04a68f.tar gnu-guix-f3b88ed26ca9950ea52941e85ad746ce3d04a68f.tar.gz |
gnu: eog-plugins: Don't use NAME in source URI.
* gnu/packages/gnome.scm (eog-plugins)[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 65f2e48092..8574c9104c 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3986,9 +3986,9 @@ supports image conversion, rotation, and slideshows.") (version "3.26.2") (source (origin (method url-fetch) - (uri (string-append "mirror://gnome/sources/" name "/" + (uri (string-append "mirror://gnome/sources/eog-plugins/" (version-major+minor version) "/" - name "-" version ".tar.xz")) + "eog-plugins-" version ".tar.xz")) (sha256 (base32 "1w8zw7kwfvlwlyb1k1inqdvbwnzq959sqawlmnwfb8ykn98hbk8y")))) |