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