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.”
This commit is contained in:
Jan Tojnar 2018-05-05 00:00:59 +02:00
parent 5deb50c038
commit 0b2b174bba
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,6 +1,5 @@
{ stdenv, fetchurl, qt5, gstreamer, gstreamermm, gst_plugins_bad { stdenv, fetchurl, qt5, ffmpeg, guvcview, automoc4
, gst_plugins_base, gst_plugins_good, ffmpeg, guvcview, automoc4 , cmake, ninja, libxml2, gettext, pkgconfig, libgphoto2, gphoto2, v4l_utils
, cmake, libxml2, gettext, pkgconfig, libgphoto2, gphoto2, v4l_utils
, libv4l, pcre }: , libv4l, pcre }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -13,11 +12,9 @@ stdenv.mkDerivation rec {
sha256 = "1vbiznwyc05jqg0dpmgxmvf7kdzmlck0i8v2c5d69kgrdnaypcrf"; sha256 = "1vbiznwyc05jqg0dpmgxmvf7kdzmlck0i8v2c5d69kgrdnaypcrf";
}; };
buildInputs = [ qt5.qtbase gstreamer gstreamermm gst_plugins_bad gst_plugins_good buildInputs = [ qt5.qtbase ffmpeg guvcview v4l_utils libv4l pcre ];
gst_plugins_base 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; { meta = with stdenv.lib; {
homepage = http://www.qstopmotion.org; homepage = http://www.qstopmotion.org;