gnome-video-effects: init at 0.4.1

This commit is contained in:
Luca Bruno 2015-08-05 22:16:54 +02:00
parent b093790ae2
commit eda4fd9be7
2 changed files with 22 additions and 0 deletions

View File

@ -330,6 +330,8 @@ let
pomodoro = callPackage ./misc/pomodoro { };
gnome-video-effects = callPackage ./misc/gnome-video-effects { };
};
in self; # pkgsFun

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl, pkgconfig, intltool }:
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;
};
}