diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-11-23 23:29:18 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-11-24 01:19:56 +0100 |
commit | ac87ffb818cc9b38e47a0742b3d0b0376e8ec034 (patch) | |
tree | a6911db2103f792bdc6dae318364d8c52c322c63 /gnu | |
parent | 37b23e447d12da506d80966edb2c3d5736378cfb (diff) | |
download | patches-ac87ffb818cc9b38e47a0742b3d0b0376e8ec034.tar patches-ac87ffb818cc9b38e47a0742b3d0b0376e8ec034.tar.gz |
gnu: vte: Don't use NAME in source URI.
* gnu/packages/gnome.scm (vte)[source]: Hard-code NAME.
Diffstat (limited to 'gnu')
-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 5b11238109..3fd8ee3149 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2341,9 +2341,9 @@ libraries written in C.") (version "0.56.3") (source (origin (method url-fetch) - (uri (string-append "mirror://gnome/sources/" name "/" + (uri (string-append "mirror://gnome/sources/vte/" (version-major+minor version) "/" - name "-" version ".tar.xz")) + "vte-" version ".tar.xz")) (sha256 (base32 "0j166gic5znssdb9r45qazq4kb4v9fial82czand5wa8i2yd988p")))) |