8a45d4525b
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
38 lines
984 B
Nix
38 lines
984 B
Nix
{ lib, stdenv, fetchFromGitLab, glib, gettext, substituteAll, gnome-menus }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-shell-extension-arcmenu";
|
|
version = "24";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "arcmenu";
|
|
repo = "ArcMenu";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-GbZt6JC+uAPkb4GU1Q7WRJ6Pf95Uh48cYwvoTgLimHs=";
|
|
};
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./fix_gmenu.patch;
|
|
gmenu_path = "${gnome-menus}/lib/girepository-1.0";
|
|
})
|
|
];
|
|
|
|
buildInputs = [
|
|
glib gettext
|
|
];
|
|
|
|
makeFlags = [ "INSTALLBASE=${placeholder "out"}/share/gnome-shell/extensions" ];
|
|
|
|
passthru = {
|
|
extensionUuid = "arcmenu@arcmenu.com";
|
|
extensionPortalSlug = "arcmenu";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Application menu for GNOME Shell, designed to provide a more traditional user experience and workflow";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ dkabot ];
|
|
homepage = "https://gitlab.com/arcmenu/ArcMenu";
|
|
};
|
|
}
|