2016-09-18 21:35:23 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, gnome3 }:
|
2018-03-03 06:56:19 +01:00
|
|
|
let
|
|
|
|
pname = "gnome-video-effects";
|
2017-12-02 03:04:31 +01:00
|
|
|
version = "0.4.3";
|
2018-03-03 06:56:19 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
2016-09-18 21:35:23 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-03 06:56:19 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
|
2017-12-02 03:04:31 +01:00
|
|
|
sha256 = "06c2f1kihyhawap1s3zg5w7q7fypsybkp7xry4hxkdz4mpsy0zjs";
|
2016-09-18 21:35:23 +02:00
|
|
|
};
|
|
|
|
|
2017-12-02 03:04:31 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
2016-09-18 21:35:23 +02:00
|
|
|
|
2018-03-03 06:56:19 +01:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "gnome3.${pname}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 21:35:23 +02:00
|
|
|
meta = with stdenv.lib; {
|
2018-03-03 06:56:19 +01:00
|
|
|
description = "A collection of GStreamer effects to be used in different GNOME Modules";
|
2016-09-18 21:35:23 +02:00
|
|
|
homepage = https://wiki.gnome.org/Projects/GnomeVideoEffects;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
}
|