diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-11-10 00:29:57 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-11-10 00:32:22 +0100 |
commit | bd70db6ee88838deb319aa54a1e2d8819413be10 (patch) | |
tree | 0965911363fbe1fbf01b211945d0c9e065a50885 /gnu/packages/gimp.scm | |
parent | 54a114db45b37a6664bffd4ec9d4aa0c6bafeb48 (diff) | |
download | patches-bd70db6ee88838deb319aa54a1e2d8819413be10.tar patches-bd70db6ee88838deb319aa54a1e2d8819413be10.tar.gz |
gnu: gegl: Add source URIs.
* gnu/packages/gimp.scm (gegl)[source]: Add URIs.
Diffstat (limited to 'gnu/packages/gimp.scm')
-rw-r--r-- | gnu/packages/gimp.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm index 4fd3cd0167..6a16a39007 100644 --- a/gnu/packages/gimp.scm +++ b/gnu/packages/gimp.scm @@ -94,7 +94,13 @@ provided, as well as a framework to add new color models and data types.") (method url-fetch) (uri (list (string-append "https://download.gimp.org/pub/gegl/" (string-take version 3) - "/gegl-" version ".tar.bz2"))) + "/gegl-" version ".tar.xz") + (string-append "https://ftp.gtk.org/pub/gegl/" + (version-major+minor version) + "/gegl-" version ".tar.xz") + (string-append "ftp://ftp.gtk.org/pub/gegl/" + (version-major+minor version) + "/gegl-" version ".tar.xz"))) (sha256 (base32 "0njydcr6qdmfzh4fxx544681qxdpf7y6b2f47jcypn810dlxy4h1")))) |