summary refs log tree commit diff
path: root/pkgs/development/libraries/gstreamer/ges/default.nix
blob: daf2ba59a406f1c7b1dff68061ed1dbce217c30c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, pkgconfig, python, gobjectIntrospection
, gnonlin, libxml2
}:

stdenv.mkDerivation rec {
  name = "gstreamer-editing-services-1.2.1";

  meta = with stdenv.lib; {
    description = "Library for creation of audio/video non-linear editors";
    homepage    = "http://gstreamer.freedesktop.org";
    license     = licenses.lgpl2Plus;
    platforms   = platforms.linux;
    maintainers = with maintainers; [ iyzsong ];
  };

  src = fetchurl {
    url = "${meta.homepage}/src/gstreamer-editing-services/${name}.tar.xz";
    sha256 = "1c20zg272wgzqw4f93f1prkv9a9gdqxmf3kal29l0r2wmwhqnxpy";
  };

  nativeBuildInputs = [ pkgconfig python gobjectIntrospection ];

  propagatedBuildInputs = [ gnonlin libxml2 ];
}