diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-21 07:48:55 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-21 17:26:47 +0100 |
commit | f010f89b13d0d40a91e05bf4ef0628454a821cfa (patch) | |
tree | f37fc6ea56a408308cbcdffdd2af4d4eaf4a84b1 | |
parent | ba07ac19f2b89be469cae442649b56947ac68170 (diff) | |
download | guix-f010f89b13d0d40a91e05bf4ef0628454a821cfa.tar.gz guix-f010f89b13d0d40a91e05bf4ef0628454a821cfa.zip |
gnu: clutter-gst: Don't use NAME in source URI.
* gnu/packages/gnome.scm (clutter-gst)[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 fdc781426b..b440b6efad 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3455,9 +3455,9 @@ presentations, kiosk style applications and so on.") (source (origin (method url-fetch) - (uri (string-append "mirror://gnome/sources/" name "/" + (uri (string-append "mirror://gnome/sources/clutter-gst/" (version-major+minor version) "/" - name "-" version ".tar.xz")) + "clutter-gst-" version ".tar.xz")) (sha256 (base32 "17czmpl92dzi4h3rn5rishk015yi3jwiw29zv8qan94xcmnbssgy")))) (build-system gnu-build-system) |