[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: gimp: Enable Python scripting support.
From: |
Ricardo Wurmus |
Subject: |
01/01: gnu: gimp: Enable Python scripting support. |
Date: |
Fri, 08 May 2015 19:55:51 +0000 |
rekado pushed a commit to branch master
in repository guix.
commit 9c8bd626a1e531e65ca9d5262924ff027b8a60cf
Author: Ricardo Wurmus <address@hidden>
Date: Fri May 8 09:35:07 2015 +0200
gnu: gimp: Enable Python scripting support.
* gnu/packages/gimp.scm (gimp): Enable Python scripting support.
---
gnu/packages/gimp.scm | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm
index 25a4169..35c55dc 100644
--- a/gnu/packages/gimp.scm
+++ b/gnu/packages/gimp.scm
@@ -32,6 +32,7 @@
#: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 @@ buffers.")
(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 @@ buffers.")
("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)