diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-11-17 09:23:41 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-11-17 09:23:41 +0200 |
commit | b3820edc995b504eedee171164e79fc935980615 (patch) | |
tree | da89c773778a0c9b39e2241c0217fd9ef0aa917d | |
parent | 2484e0b3e481e2b1fcb6761d0dbf80da98089de4 (diff) | |
download | patches-b3820edc995b504eedee171164e79fc935980615.tar patches-b3820edc995b504eedee171164e79fc935980615.tar.gz |
gnu: librsvg-next: Don't use name variable in source uri.
* gnu/packages/gnome.scm (librsvg-next)[source]: Hardcode 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 f51d366f44..87f19a0908 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1409,9 +1409,9 @@ library.") (version "2.46.0") (source (origin (method url-fetch) - (uri (string-append "mirror://gnome/sources/" name "/" + (uri (string-append "mirror://gnome/sources/librsvg/" (version-major+minor version) "/" - name "-" version ".tar.xz")) + "librsvg-" version ".tar.xz")) (sha256 (base32 "1la3az2af2ccm6rp86b6wh0kq7kxzl4n8pli5qxhyic1rd91xj4n")))) |