1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/gstreamer/ges/default.nix

24 lines
698 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 {
2016-04-24 18:40:20 +01:00
name = "gstreamer-editing-services-1.8.0";
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";
2016-04-24 18:40:20 +01:00
sha256 = "1gisdfa91kq89bsmbvb47alaxh8lpqmr6f3dzlwmf389nkandw2h";
2014-03-17 14:06:32 +00:00
};
nativeBuildInputs = [ pkgconfig python gobjectIntrospection flex perl ];
2014-03-17 14:06:32 +00:00
propagatedBuildInputs = [ gnonlin libxml2 ];
}