gnu: gimp: Add optional dependencies.
* gnu/packages/gimp.scm (gimp)[inputs]: Sort non-optional and optional inputs alphabetically. Add ghostscript, libheif, libmng, openexr, openjpeg. [native-inputs]: Add desktop-file-utils. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>master
parent
5c212abefa
commit
511af23f26
|
@ -40,6 +40,7 @@
|
||||||
#:use-module (gnu packages build-tools)
|
#:use-module (gnu packages build-tools)
|
||||||
#:use-module (gnu packages documentation)
|
#:use-module (gnu packages documentation)
|
||||||
#:use-module (gnu packages fontutils)
|
#:use-module (gnu packages fontutils)
|
||||||
|
#:use-module (gnu packages freedesktop)
|
||||||
#:use-module (gnu packages graphviz)
|
#:use-module (gnu packages graphviz)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
|
@ -332,30 +333,36 @@ buffers.")
|
||||||
(format port "for dir in '~a'.split(':'):~%" pythonpath)
|
(format port "for dir in '~a'.split(':'):~%" pythonpath)
|
||||||
(format port " site.addsitedir(dir)~%")))))))))
|
(format port " site.addsitedir(dir)~%")))))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("babl" ,babl)
|
`(("atk" ,atk)
|
||||||
|
("babl" ,babl)
|
||||||
|
("gegl" ,gegl)
|
||||||
|
("gexiv2" ,gexiv2)
|
||||||
("glib" ,glib)
|
("glib" ,glib)
|
||||||
("glib-networking" ,glib-networking)
|
("glib-networking" ,glib-networking)
|
||||||
|
("gtk+" ,gtk+-2)
|
||||||
|
("libjpeg" ,libjpeg-turbo)
|
||||||
|
("libmypaint" ,libmypaint)
|
||||||
("libtiff" ,libtiff)
|
("libtiff" ,libtiff)
|
||||||
("libwebp" ,libwebp)
|
("libwebp" ,libwebp)
|
||||||
("libjpeg" ,libjpeg-turbo)
|
|
||||||
("atk" ,atk)
|
|
||||||
("gexiv2" ,gexiv2)
|
|
||||||
("gtk+" ,gtk+-2)
|
|
||||||
("libmypaint" ,libmypaint)
|
|
||||||
("mypaint-brushes" ,mypaint-brushes-1.3)
|
("mypaint-brushes" ,mypaint-brushes-1.3)
|
||||||
("exif" ,libexif) ; optional, EXIF + XMP support
|
("exif" ,libexif) ; optional, EXIF + XMP support
|
||||||
|
("ghostscript" ,ghostscript) ; optional, EPS + PS support
|
||||||
("lcms" ,lcms) ; optional, color management
|
("lcms" ,lcms) ; optional, color management
|
||||||
|
("libheif" ,libheif) ; optional, HEIF + AVIF support
|
||||||
|
("libmng" ,libmng) ; optional, MNG support
|
||||||
("librsvg" ,librsvg) ; optional, SVG support
|
("librsvg" ,librsvg) ; optional, SVG support
|
||||||
("libxcursor" ,libxcursor) ; optional, Mouse Cursor support
|
("libxcursor" ,libxcursor) ; optional, Mouse Cursor support
|
||||||
|
("openexr" ,openexr) ; optional, EXR support
|
||||||
|
("openjpeg" ,openjpeg) ; optional, JPEG 2000 support
|
||||||
("poppler" ,poppler) ; optional, PDF support
|
("poppler" ,poppler) ; optional, PDF support
|
||||||
("poppler-data" ,poppler-data)
|
("poppler-data" ,poppler-data) ; optional, PDF support
|
||||||
("python" ,python-2) ; optional, Python support
|
("python" ,python-2) ; optional, Python support
|
||||||
("python2-pygtk" ,python2-pygtk) ; optional, Python support
|
("python2-pygtk" ,python2-pygtk))) ; optional, Python support
|
||||||
("gegl" ,gegl)))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("glib:bin" ,glib "bin") ; for glib-compile-resources and gdbus-codegen
|
`(("desktop-file-utils" ,desktop-file-utils)
|
||||||
("pkg-config" ,pkg-config)
|
("glib:bin" ,glib "bin") ; for glib-compile-resources and gdbus-codegen
|
||||||
("intltool" ,intltool)))
|
("intltool" ,intltool)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
(home-page "https://www.gimp.org")
|
(home-page "https://www.gimp.org")
|
||||||
(synopsis "GNU Image Manipulation Program")
|
(synopsis "GNU Image Manipulation Program")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue