gnomeExtensions.arc-menu: 33 -> 43

This commit is contained in:
Tor Hedin Brønner 2020-03-08 15:07:39 +01:00 committed by Jan Tojnar
parent a786b8bc42
commit 954baa6751
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gnome-shell-arc-menu"; pname = "gnome-shell-arc-menu";
version = "33"; version = "43";
src = fetchFromGitLab { src = fetchFromGitLab {
owner = "LinxGem33"; owner = "LinxGem33";
repo = "Arc-Menu"; repo = "Arc-Menu";
rev = "v${version}-Stable"; rev = "v${version}-Stable";
sha256 = "0ncb19jlwy2y9jcj8g6cdbasdv6n7hm96qv9l251z6qgrmg28x4z"; sha256 = "1rspl89bxqy0wla8cj0h1d29gp38xg1vmvhc1qg7bl46ank4yp5q";
}; };
patches = [ patches = [
@ -22,12 +22,12 @@ stdenv.mkDerivation rec {
glib gettext glib gettext
]; ];
makeFlags = [ "INSTALL_BASE=${placeholder "out"}/share/gnome-shell/extensions" ]; makeFlags = [ "INSTALLBASE=${placeholder "out"}/share/gnome-shell/extensions" ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Gnome shell extension designed to replace the standard menu found in Gnome 3"; description = "Gnome shell extension designed to replace the standard menu found in Gnome 3";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = with maintainers; [ dkabot ]; maintainers = with maintainers; [ dkabot ];
homepage = https://gitlab.com/LinxGem33/Arc-Menu; homepage = "https://gitlab.com/LinxGem33/Arc-Menu";
}; };
} }