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 {
2018-03-30 19:12:06 +00:00
name = "gstreamer-editing-services-1.14.0";
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 19:28:31 +00: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";
2018-03-30 19:12:06 +00:00
sha256 = "14cdd6y9p4k603hsnyhdjw2igg855gwpx0362jmg8k1gagmr0pwd";
2014-03-17 14:06:32 +00:00
};
outputs = [ "out" "dev" ];
2016-04-24 12:39:30 +00:00
nativeBuildInputs = [ pkgconfig python gobjectIntrospection flex perl ];
2014-03-17 14:06:32 +00:00
propagatedBuildInputs = [ gnonlin libxml2 ];
}