summary refs log tree commit diff
path: root/pkgs/development/libraries/gstreamer
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-09-03 22:43:55 +0200
committerBen Wolsieffer <benwolsieffer@gmail.com>2018-10-18 13:49:39 -0400
commit3a0e193520708bb4890e2c3d3bd65d385ed0d602 (patch)
tree524c74e611455d9d9747d2c514a5f64680ff7b97 /pkgs/development/libraries/gstreamer
parent0d2f06ae3a1f8347dc09cd0dfe6d12b757368e4d (diff)
downloadnixpkgs-3a0e193520708bb4890e2c3d3bd65d385ed0d602.tar
nixpkgs-3a0e193520708bb4890e2c3d3bd65d385ed0d602.tar.gz
nixpkgs-3a0e193520708bb4890e2c3d3bd65d385ed0d602.tar.bz2
nixpkgs-3a0e193520708bb4890e2c3d3bd65d385ed0d602.tar.lz
nixpkgs-3a0e193520708bb4890e2c3d3bd65d385ed0d602.tar.xz
nixpkgs-3a0e193520708bb4890e2c3d3bd65d385ed0d602.tar.zst
nixpkgs-3a0e193520708bb4890e2c3d3bd65d385ed0d602.zip
gst_all_1.gst-plugins-base: add python3 for install script
Meson no longer propagates it so we need to re-add it.
Diffstat (limited to 'pkgs/development/libraries/gstreamer')
-rw-r--r--pkgs/development/libraries/gstreamer/base/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gstreamer/base/default.nix b/pkgs/development/libraries/gstreamer/base/default.nix
index 30a0f9e58d4..c67526fb712 100644
--- a/pkgs/development/libraries/gstreamer/base/default.nix
+++ b/pkgs/development/libraries/gstreamer/base/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchurl, fetchpatch, lib
 , pkgconfig, meson, ninja, gettext, gobjectIntrospection
-, python, gstreamer, orc, pango, libtheora
+, python3, gstreamer, orc, pango, libtheora
 , libintl, libopus
 , enableX11 ? stdenv.isLinux, libXv
 , enableWayland ? stdenv.isLinux, wayland
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
 
   outputs = [ "out" "dev" ];
 
-  nativeBuildInputs = [ pkgconfig python gettext gobjectIntrospection ]
+  nativeBuildInputs = [ pkgconfig python3 gettext gobjectIntrospection ]
 
   # Broken meson with Darwin. Should hopefully be fixed soon. Tracking
   # in https://bugzilla.gnome.org/show_bug.cgi?id=781148.