nixpkgs/pkgs/development/libraries/gstreamer/ges/default.nix

26 lines
729 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 {
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;
platforms = platforms.unix;
2014-03-17 14:06:32 +00:00
};
src = fetchurl {
url = "${meta.homepage}/src/gstreamer-editing-services/${name}.tar.xz";
sha256 = "0i11b1rwkjsy9gxrf9vk9lgg8qm60ggfi5lp0ncyh4lxvh16vbgj";
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 ];
}