about summary refs log tree commit diff
path: root/pkgs/development/libraries/gstreamer/gnonlin/default.nix
blob: c45c1469cb36e0332ce518b8eb89f1abb30299d5 (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
25
26
27
28
29
{ stdenv, fetchurl, pkgconfig
, gst-plugins-base
}:

stdenv.mkDerivation rec {
  name = "gnonlin-1.2.0";

  meta = with stdenv.lib; {
    description = "Gstreamer Non-Linear Multimedia Editing Plugins";
    homepage    = "http://gstreamer.freedesktop.org";
    longDescription = ''
      Gnonlin is a library built on top of GStreamer which provides 
      support for writing non-linear audio and video editing
      applications. It introduces the concept of a timeline.
    '';
    license     = licenses.lgpl2Plus; 
    platforms   = platforms.linux;
    maintainers = with maintainers; [ iyzsong ];
  };

  src = fetchurl {
    url = "${meta.homepage}/src/gnonlin/${name}.tar.xz";
    sha256 = "15hyb0kg8sm92kj37cir4l3sa21b8zy4la1ccfhb358b4mf24vl7";
  };

  nativeBuildInputs = [ pkgconfig ];

  propagatedBuildInputs = [ gst-plugins-base ];
}