2014-03-22 20:56:29 +08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, python, gobjectIntrospection
|
2015-12-05 11:05:48 +01:00
|
|
|
, gnonlin, libxml2, flex, perl
|
2014-03-17 22:06:32 +08:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-12-07 14:03:36 +01:00
|
|
|
name = "gstreamer-editing-services-1.12.3";
|
2014-03-17 22:06:32 +08:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library for creation of audio/video non-linear editors";
|
2017-09-16 21:28:31 +02:00
|
|
|
homepage = "https://gstreamer.freedesktop.org";
|
2014-03-17 22:06:32 +08:00
|
|
|
license = licenses.lgpl2Plus;
|
2015-04-08 21:56:57 -04:00
|
|
|
platforms = platforms.unix;
|
2014-03-17 22:06:32 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/src/gstreamer-editing-services/${name}.tar.xz";
|
2017-12-11 09:21:20 +00:00
|
|
|
sha256 = "0xjz8r0wbzc0kwi9q8akv7w71ii1n2y2dmb0q2p5k4h78382ybh3";
|
2014-03-17 22:06:32 +08:00
|
|
|
};
|
|
|
|
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-24 07:39:30 -05:00
|
|
|
|
2015-12-05 11:05:48 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig python gobjectIntrospection flex perl ];
|
2014-03-17 22:06:32 +08:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ gnonlin libxml2 ];
|
|
|
|
}
|