gnome3.gnome-video-effects: add updateScript
This commit is contained in:
parent
24cf244a18
commit
a9719c6be2
@ -1,17 +1,26 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, intltool, gnome3 }:
|
{ stdenv, fetchurl, pkgconfig, intltool, gnome3 }:
|
||||||
|
let
|
||||||
stdenv.mkDerivation rec {
|
pname = "gnome-video-effects";
|
||||||
name = "gnome-video-effects-${version}";
|
|
||||||
version = "0.4.3";
|
version = "0.4.3";
|
||||||
|
in stdenv.mkDerivation rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/gnome-video-effects/0.4/${name}.tar.xz";
|
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
|
||||||
sha256 = "06c2f1kihyhawap1s3zg5w7q7fypsybkp7xry4hxkdz4mpsy0zjs";
|
sha256 = "06c2f1kihyhawap1s3zg5w7q7fypsybkp7xry4hxkdz4mpsy0zjs";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig intltool ];
|
nativeBuildInputs = [ pkgconfig intltool ];
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
updateScript = gnome3.updateScript {
|
||||||
|
packageName = pname;
|
||||||
|
attrPath = "gnome3.${pname}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
description = "A collection of GStreamer effects to be used in different GNOME Modules";
|
||||||
homepage = https://wiki.gnome.org/Projects/GnomeVideoEffects;
|
homepage = https://wiki.gnome.org/Projects/GnomeVideoEffects;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = gnome3.maintainers;
|
maintainers = gnome3.maintainers;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user