2014-03-22 12:56:29 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, python, gobjectIntrospection
|
2014-03-17 14:06:32 +00:00
|
|
|
, gnonlin, libxml2
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-08-12 21:35:49 +01:00
|
|
|
name = "gstreamer-editing-services-1.2.1";
|
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;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ iyzsong ];
|
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/src/gstreamer-editing-services/${name}.tar.xz";
|
2014-08-12 21:35:49 +01:00
|
|
|
sha256 = "1c20zg272wgzqw4f93f1prkv9a9gdqxmf3kal29l0r2wmwhqnxpy";
|
2014-03-17 14:06:32 +00:00
|
|
|
};
|
|
|
|
|
2014-03-22 12:56:29 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig python gobjectIntrospection ];
|
2014-03-17 14:06:32 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ gnonlin libxml2 ];
|
|
|
|
}
|