1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/gstreamer/ges/default.nix
2015-04-18 19:02:45 -04:00

25 lines
725 B
Nix

{ stdenv, fetchurl, pkgconfig, python, gobjectIntrospection
, gnonlin, libxml2
}:
stdenv.mkDerivation rec {
name = "gstreamer-editing-services-1.4.0";
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;
maintainers = with maintainers; [ iyzsong ];
};
src = fetchurl {
url = "${meta.homepage}/src/gstreamer-editing-services/${name}.tar.xz";
sha256 = "1cwbh244an6zsxsscvg6xjnb34ylci34g9zx59xjbv5wnw7vj86c";
};
nativeBuildInputs = [ pkgconfig python gobjectIntrospection ];
propagatedBuildInputs = [ gnonlin libxml2 ];
}