summary refs log tree commit diff
path: root/pkgs/applications/video/qstopmotion
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-05-05 00:00:59 +0200
committerJan Tojnar <jtojnar@gmail.com>2018-05-05 00:01:53 +0200
commit0b2b174bbaf84e4065f05c8f4a9168ed1a62539a (patch)
tree5431edb7d4177cb21ac026f2b03745452d235599 /pkgs/applications/video/qstopmotion
parent5deb50c038a40d9331be0359c84b0e3ade78db9d (diff)
downloadnixlib-0b2b174bbaf84e4065f05c8f4a9168ed1a62539a.tar
nixlib-0b2b174bbaf84e4065f05c8f4a9168ed1a62539a.tar.gz
nixlib-0b2b174bbaf84e4065f05c8f4a9168ed1a62539a.tar.bz2
nixlib-0b2b174bbaf84e4065f05c8f4a9168ed1a62539a.tar.lz
nixlib-0b2b174bbaf84e4065f05c8f4a9168ed1a62539a.tar.xz
nixlib-0b2b174bbaf84e4065f05c8f4a9168ed1a62539a.tar.zst
nixlib-0b2b174bbaf84e4065f05c8f4a9168ed1a62539a.zip
qstopmotion: remove unnecessary gstreamer dependency
According to 2.3.1 release notes: “All gstreamer grabber are removed from the application. The reason is the end of the support for gstreamer 0.10 in many distributions.”
Diffstat (limited to 'pkgs/applications/video/qstopmotion')
-rw-r--r--pkgs/applications/video/qstopmotion/default.nix11
1 files changed, 4 insertions, 7 deletions
diff --git a/pkgs/applications/video/qstopmotion/default.nix b/pkgs/applications/video/qstopmotion/default.nix
index 2454044bb48e..a689697e0a0f 100644
--- a/pkgs/applications/video/qstopmotion/default.nix
+++ b/pkgs/applications/video/qstopmotion/default.nix
@@ -1,6 +1,5 @@
-{ stdenv, fetchurl, qt5, gstreamer, gstreamermm, gst_plugins_bad
-, gst_plugins_base, gst_plugins_good, ffmpeg, guvcview, automoc4
-, cmake, libxml2, gettext, pkgconfig, libgphoto2, gphoto2, v4l_utils
+{ stdenv, fetchurl, qt5, ffmpeg, guvcview, automoc4
+, cmake, ninja, libxml2, gettext, pkgconfig, libgphoto2, gphoto2, v4l_utils
 , libv4l, pcre }:
 
 stdenv.mkDerivation rec {
@@ -13,11 +12,9 @@ stdenv.mkDerivation rec {
     sha256 = "1vbiznwyc05jqg0dpmgxmvf7kdzmlck0i8v2c5d69kgrdnaypcrf";
   };
 
-  buildInputs = [ qt5.qtbase gstreamer gstreamermm gst_plugins_bad gst_plugins_good
-                  gst_plugins_base ffmpeg guvcview v4l_utils libv4l pcre
-		];
+  buildInputs = [ qt5.qtbase ffmpeg guvcview v4l_utils libv4l pcre ];
 
-  nativeBuildInputs = [ pkgconfig cmake gettext libgphoto2 gphoto2 libxml2 libv4l ];
+  nativeBuildInputs = [ pkgconfig cmake ninja gettext libgphoto2 gphoto2 libxml2 libv4l ];
 
   meta = with stdenv.lib; {
     homepage = http://www.qstopmotion.org;