diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-19 06:52:20 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-19 09:54:36 +0100 |
commit | 00bfe5eda0367e7ef999fea6e9daaa3876cdd3a9 (patch) | |
tree | 2d0138cedc05a7b299942b29f0672d2c9aca8cb1 /gnu/packages | |
parent | 2ed93b78203f35451197fff3b2d47941bbc912a2 (diff) | |
download | guix-00bfe5eda0367e7ef999fea6e9daaa3876cdd3a9.tar.gz guix-00bfe5eda0367e7ef999fea6e9daaa3876cdd3a9.zip |
gnu: gegl: Don't use NAME in source URI.
* gnu/packages/gimp.scm (gegl)[source]: Hard-code NAME.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gimp.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm index 42b9c758db..f3cb23a564 100644 --- a/gnu/packages/gimp.scm +++ b/gnu/packages/gimp.scm @@ -85,7 +85,7 @@ 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) - "/" name "-" version ".tar.bz2"))) + "/gegl-" version ".tar.bz2"))) (sha256 (base32 "0ljqxc4iyy2hrj31pxcy1xp4xm5zbx1nigqisphmg4p8mcz2jrz9")))) |