summary refs log tree commit diff
path: root/pkgs/development/libraries/gstreamer
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-10-18 10:04:34 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-10-18 23:16:05 +0200
commitbd8b0dffaeac5af20562b8e0c2e40f801214041a (patch)
tree0c3b4ec47d63b78b12c5e8c195280f11760488ad /pkgs/development/libraries/gstreamer
parentc431f11d1f445479130c0411a7f2a94afae03b34 (diff)
downloadnixlib-bd8b0dffaeac5af20562b8e0c2e40f801214041a.tar
nixlib-bd8b0dffaeac5af20562b8e0c2e40f801214041a.tar.gz
nixlib-bd8b0dffaeac5af20562b8e0c2e40f801214041a.tar.bz2
nixlib-bd8b0dffaeac5af20562b8e0c2e40f801214041a.tar.lz
nixlib-bd8b0dffaeac5af20562b8e0c2e40f801214041a.tar.xz
nixlib-bd8b0dffaeac5af20562b8e0c2e40f801214041a.tar.zst
nixlib-bd8b0dffaeac5af20562b8e0c2e40f801214041a.zip
gst_python: use python2
print statement
Diffstat (limited to 'pkgs/development/libraries/gstreamer')
-rw-r--r--pkgs/development/libraries/gstreamer/legacy/gst-python/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gstreamer/legacy/gst-python/default.nix b/pkgs/development/libraries/gstreamer/legacy/gst-python/default.nix
index 2d588e5d231c..d78b50a7821a 100644
--- a/pkgs/development/libraries/gstreamer/legacy/gst-python/default.nix
+++ b/pkgs/development/libraries/gstreamer/legacy/gst-python/default.nix
@@ -1,8 +1,8 @@
-{ fetchurl, stdenv, pkgconfig, pythonPackages, gstreamer, gst_plugins_base
+{ fetchurl, stdenv, pkgconfig, python2Packages, gstreamer, gst_plugins_base
 }:
 
 let
-  inherit (pythonPackages) python pygobject2;
+  inherit (python2Packages) python pygobject2;
 in stdenv.mkDerivation rec {
   name = "gst-python-0.10.22";