summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2017-09-08 16:17:19 +0200
committerRobert Helgesson <robert@rycee.net>2017-09-08 20:51:03 +0200
commitc10a1c6e1cf46cb0ed042f10970e89e585be6d97 (patch)
tree031511cc046dd9f61f3162a8ec005ccd3d123aa2 /pkgs/applications/video
parente9183fd2d4d3bb222b2ce3492935ec26d207524a (diff)
downloadnixlib-c10a1c6e1cf46cb0ed042f10970e89e585be6d97.tar
nixlib-c10a1c6e1cf46cb0ed042f10970e89e585be6d97.tar.gz
nixlib-c10a1c6e1cf46cb0ed042f10970e89e585be6d97.tar.bz2
nixlib-c10a1c6e1cf46cb0ed042f10970e89e585be6d97.tar.lz
nixlib-c10a1c6e1cf46cb0ed042f10970e89e585be6d97.tar.xz
nixlib-c10a1c6e1cf46cb0ed042f10970e89e585be6d97.tar.zst
nixlib-c10a1c6e1cf46cb0ed042f10970e89e585be6d97.zip
pitivi: fix path to gst-python
This fixes the `object() takes no parameters` error that shows up on
startup.
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/pitivi/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/video/pitivi/default.nix b/pkgs/applications/video/pitivi/default.nix
index c2c64bfa4966..2317765118f6 100644
--- a/pkgs/applications/video/pitivi/default.nix
+++ b/pkgs/applications/video/pitivi/default.nix
@@ -46,6 +46,8 @@ in stdenv.mkDerivation rec {
     dbus-python
   ]);
 
+  PYTHONPATH = "${python3Packages.gst-python}/lib/${python3Packages.python.sitePackages}";
+
   meta = with stdenv.lib; {
     description = "Non-Linear video editor utilizing the power of GStreamer";
     homepage    = "http://pitivi.org/";