gnome-video-effects: move from gnome3.gnome-video-effects

This commit is contained in:
Jan Tojnar
2019-08-19 15:37:17 +02:00
parent 8746c77a38
commit d4861c9ede
3 changed files with 4 additions and 3 deletions

View File

@@ -0,0 +1,28 @@
{ stdenv, fetchurl, pkgconfig, intltool, gnome3 }:
let
pname = "gnome-video-effects";
version = "0.4.3";
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
sha256 = "06c2f1kihyhawap1s3zg5w7q7fypsybkp7xry4hxkdz4mpsy0zjs";
};
nativeBuildInputs = [ pkgconfig intltool ];
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
};
};
meta = with stdenv.lib; {
description = "A collection of GStreamer effects to be used in different GNOME Modules";
homepage = https://wiki.gnome.org/Projects/GnomeVideoEffects;
platforms = platforms.linux;
maintainers = gnome3.maintainers;
license = licenses.gpl2;
};
}