mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{ lib, fetchFromGitHub
|
|
, buildGoModule, pkg-config, wrapGAppsHook3, gobject-introspection
|
|
, gtk-layer-shell, gtk3, pango, gdk-pixbuf, atk
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "nwg-menu";
|
|
version = "0.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nwg-piotr";
|
|
repo = "nwg-menu";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-PMW5QUUZcdWNOMexJVy0hYXx+y2AopT3WL29iWb9MbM=";
|
|
};
|
|
|
|
vendorHash = "sha256-PJvHDmyqE+eIELGRD8QHsZgZ7L0DKc2FYOvfvurzlhs=";
|
|
|
|
doCheck = false;
|
|
|
|
buildInputs = [ atk gtk3 gdk-pixbuf gtk-layer-shell pango ];
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook3 gobject-introspection ];
|
|
|
|
prePatch = ''
|
|
for file in main.go tools.go; do
|
|
substituteInPlace $file --replace '/usr/share/nwg-menu' $out/share
|
|
done
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/
|
|
cp menu-start.css $out/share/
|
|
'';
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "$out/share")
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/nwg-piotr/nwg-menu";
|
|
description = "MenuStart plugin for nwg-panel";
|
|
mainProgram = "nwg-menu";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ berbiche ];
|
|
};
|
|
}
|