aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/spice-gtk
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-09-26 09:46:28 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-09-26 11:10:50 +0200
commit8ed1a955d2c4c11abe728051e8a986f95131dd88 (patch)
tree871962ca0d951754f87c2d264e94b8a3e169aac6 /pkgs/development/libraries/spice-gtk
parent5ef97b39dc543a5af2d5dfe2b278f511abb4b062 (diff)
spice-gtk: do not use top-level python packages
Diffstat (limited to 'pkgs/development/libraries/spice-gtk')
-rw-r--r--pkgs/development/libraries/spice-gtk/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/spice-gtk/default.nix b/pkgs/development/libraries/spice-gtk/default.nix
index 3034370e4ea5..ff842eff2fbf 100644
--- a/pkgs/development/libraries/spice-gtk/default.nix
+++ b/pkgs/development/libraries/spice-gtk/default.nix
@@ -1,11 +1,13 @@
{ stdenv, fetchurl, pkgconfig, gtk2, spice_protocol, intltool, celt_0_5_1
, openssl, libpulseaudio, pixman, gobjectIntrospection, libjpeg_turbo, zlib
-, cyrus_sasl, python, pygtk, autoreconfHook, usbredir, libsoup
+, cyrus_sasl, pythonPackages, autoreconfHook, usbredir, libsoup
, gtk3, enableGTK3 ? false }:
with stdenv.lib;
-stdenv.mkDerivation rec {
+let
+ inherit (pythonPackages) python pygtk;
+in stdenv.mkDerivation rec {
name = "spice-gtk-0.29";
src = fetchurl {