summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.24/misc/gnome-video-effects/default.nix
blob: c0bd2fed3f2d308c2b5e1e259370113d839c4aa4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, pkgconfig, intltool, gnome3 }:

stdenv.mkDerivation rec {
  name = "gnome-video-effects-${version}";
  version = "0.4.1";

  src = fetchurl {
    url = "mirror://gnome/sources/gnome-video-effects/0.4/${name}.tar.xz";
    sha256 = "0jl4iny2dqpcgi3sgxzpgnbw0752i8ay3rscp2cgdjlp79ql5gil";
  };

  buildInputs = [ pkgconfig intltool ];

  meta = with stdenv.lib; {
    homepage = https://wiki.gnome.org/Projects/GnomeVideoEffects;
    platforms = platforms.linux;
    maintainers = gnome3.maintainers;
    license = licenses.gpl2;
  };
}