about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-09-25 23:19:01 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-09-25 23:19:01 +0200
commit0721cd2f7dce15a3a4289c9e0fa2786636b786e3 (patch)
treeb4d6f93cfbd767b3b73e984a7a634ebad949b912 /pkgs/applications/graphics
parent7d4f8d29e71523ccb53d5fbcba5015e2983f2013 (diff)
downloadnixlib-0721cd2f7dce15a3a4289c9e0fa2786636b786e3.tar
nixlib-0721cd2f7dce15a3a4289c9e0fa2786636b786e3.tar.gz
nixlib-0721cd2f7dce15a3a4289c9e0fa2786636b786e3.tar.bz2
nixlib-0721cd2f7dce15a3a4289c9e0fa2786636b786e3.tar.lz
nixlib-0721cd2f7dce15a3a4289c9e0fa2786636b786e3.tar.xz
nixlib-0721cd2f7dce15a3a4289c9e0fa2786636b786e3.tar.zst
nixlib-0721cd2f7dce15a3a4289c9e0fa2786636b786e3.zip
gimp: do not use top-level python packages
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/gimp/2.8.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/gimp/2.8.nix b/pkgs/applications/graphics/gimp/2.8.nix
index 662e214ceaff..4b380ed18864 100644
--- a/pkgs/applications/graphics/gimp/2.8.nix
+++ b/pkgs/applications/graphics/gimp/2.8.nix
@@ -1,9 +1,11 @@
 { stdenv, fetchurl, pkgconfig, intltool, babl, gegl, gtk2, glib, gdk_pixbuf
 , pango, cairo, freetype, fontconfig, lcms, libpng, libjpeg, poppler, libtiff
 , webkit, libmng, librsvg, libwmf, zlib, libzip, ghostscript, aalib, jasper
-, python, pygtk, libart_lgpl, libexif, gettext, xorg, wrapPython }:
+, pythonPackages, libart_lgpl, libexif, gettext, xorg }:
 
-stdenv.mkDerivation rec {
+let
+  inherit (pythonPackages) pygtk wrapPython python;
+in stdenv.mkDerivation rec {
   name = "gimp-${version}";
   version = "2.8.18";