2019-09-02 21:20:44 +01:00
|
|
|
{ stdenv, fetchFromGitLab, glib, gettext, substituteAll, gnome-menus }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gnome-shell-arc-menu";
|
2020-07-28 06:58:05 +01:00
|
|
|
version = "47";
|
2019-09-02 21:20:44 +01:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
2020-07-28 06:58:05 +01:00
|
|
|
owner = "arcmenu-team";
|
2019-09-02 21:20:44 +01:00
|
|
|
repo = "Arc-Menu";
|
2019-10-06 18:25:25 +01:00
|
|
|
rev = "v${version}-Stable";
|
2020-07-28 06:58:05 +01:00
|
|
|
sha256 = "1hhjxdm1sm9pddhkkxx532hqqiv9ghvqgn9xszg1jwhj29380fv6";
|
2019-09-02 21:20:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix_gmenu.patch;
|
|
|
|
gmenu_path = "${gnome-menus}/lib/girepository-1.0";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
glib gettext
|
|
|
|
];
|
|
|
|
|
2020-03-08 14:07:39 +00:00
|
|
|
makeFlags = [ "INSTALLBASE=${placeholder "out"}/share/gnome-shell/extensions" ];
|
2019-09-02 21:20:44 +01:00
|
|
|
|
2018-08-30 10:09:58 +01:00
|
|
|
uuid = "arc-menu@linxgem33.com";
|
|
|
|
|
2019-09-02 21:20:44 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Gnome shell extension designed to replace the standard menu found in Gnome 3";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ dkabot ];
|
2020-03-08 14:07:39 +00:00
|
|
|
homepage = "https://gitlab.com/LinxGem33/Arc-Menu";
|
2019-09-02 21:20:44 +01:00
|
|
|
};
|
|
|
|
}
|