diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-10-30 04:44:25 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-10-30 05:21:04 +0100 |
commit | 16243f0b50a9c674f9df60b9a6548900d7a7b635 (patch) | |
tree | 60076246f2c765276c65000d8129c0e87763673b | |
parent | 9f3028676cb353d98ae07ad72ceca00af9b9f309 (diff) | |
download | gnu-guix-16243f0b50a9c674f9df60b9a6548900d7a7b635.tar gnu-guix-16243f0b50a9c674f9df60b9a6548900d7a7b635.tar.gz |
gnu: goffice: Don't use NAME in source URI.
* gnu/packages/gnome.scm (goffice)[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 222c5fdec7..15abfcf3d3 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2065,9 +2065,9 @@ Hints specification (EWMH).") (version "0.10.44") (source (origin (method url-fetch) - (uri (string-append "mirror://gnome/sources/" name "/" + (uri (string-append "mirror://gnome/sources/goffice/" (version-major+minor version) "/" - name "-" version ".tar.xz")) + "goffice-" version ".tar.xz")) (sha256 (base32 "1fd7cm6j0g0mqgpqs4y22b4gd2ll4mcyvg4d0q22d5ndjapl4q3d")))) (build-system gnu-build-system) |