26 lines
730 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, python, gobjectIntrospection
, gnonlin, libxml2, flex, perl
2014-03-17 22:06:32 +08:00
}:
stdenv.mkDerivation rec {
2017-09-16 21:28:31 +02:00
name = "gstreamer-editing-services-1.12.2";
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;
platforms = platforms.unix;
2014-03-17 22:06:32 +08:00
};
src = fetchurl {
url = "${meta.homepage}/src/gstreamer-editing-services/${name}.tar.xz";
2017-09-16 21:28:31 +02:00
sha256 = "0bi0f487949k9xnl1r6ngysgaibmmswwgdqcrchg0dixnnbm9isr";
2014-03-17 22:06:32 +08:00
};
outputs = [ "out" "dev" ];
2016-04-24 07:39:30 -05:00
nativeBuildInputs = [ pkgconfig python gobjectIntrospection flex perl ];
2014-03-17 22:06:32 +08:00
propagatedBuildInputs = [ gnonlin libxml2 ];
}