diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-09-28 22:25:49 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-09-29 17:36:10 +0200 |
commit | 5754f0cfb58f64592a6fad3fa74e7354cf187caf (patch) | |
tree | a76ec4760122939df22b71cab18b8a8e3718044e | |
parent | d485cdc040e5c600c1bf12f0689a77d0cc0d7333 (diff) |
gnu: cogl: Don't use NAME in source URI.
* gnu/packages/gnome.scm (cogl)[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 b6e5b3cc8f..38339feef0 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3431,9 +3431,9 @@ throughout GNOME for API documentation).") (source (origin (method url-fetch) - (uri (string-append "mirror://gnome/sources/" name "/" + (uri (string-append "mirror://gnome/sources/cogl/" (version-major+minor version) "/" - name "-" version ".tar.xz")) + "cogl-" version ".tar.xz")) (sha256 (base32 "03f0ha3qk7ca0nnkkcr1garrm1n1vvfqhkz9lwjm592fnv6ii9rr")))) |