mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: gimp: Enable Python scripting support.
* gnu/packages/gimp.scm (gimp): Enable Python scripting support.
This commit is contained in:
parent
965a733220
commit
9c8bd626a1
1 changed files with 3 additions and 4 deletions
|
@ -32,6 +32,7 @@ (define-module (gnu packages gimp)
|
|||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages xml)
|
||||
#:use-module (gnu packages photo)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages xorg)
|
||||
#:use-module (gnu packages imagemagick))
|
||||
|
||||
|
@ -127,10 +128,6 @@ (define-public gimp
|
|||
(base32
|
||||
"0bdj0l7a94jqhjnj40m9rqaf622wj905iximivb55iy98639aanq"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
;; We don't have pygtk which seems to be needed for this feature
|
||||
`("--disable-python")))
|
||||
(inputs
|
||||
`(("babl" ,babl)
|
||||
("glib" ,glib)
|
||||
|
@ -141,6 +138,8 @@ (define-public gimp
|
|||
("exif" ,libexif) ;optional, EXIF + XMP support
|
||||
("lcms" ,lcms) ;optional, color management
|
||||
("librsvg" ,librsvg) ;optional, SVG support
|
||||
("python" ,python-2) ;optional, Python support
|
||||
("python2-pygtk" ,python2-pygtk) ;optional, Python support
|
||||
("gegl" ,gegl)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
|
|
Loading…
Reference in a new issue