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

26 lines
740 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.8.2";
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 = "a1d57ff9461407cca1f6e7a9f31a5bdb73f73f33c488a3e3318b27e10a4332ae";
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 ];
}