3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/gstreamer/ges/default.nix

26 lines
730 B
Nix
Raw Normal View History

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