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)
80 lines
1.5 KiB
Nix
80 lines
1.5 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, fluxbox
|
|
, gnused
|
|
, makeWrapper
|
|
, perlPackages
|
|
, substituteAll
|
|
, xorg
|
|
, wrapGAppsHook3
|
|
, gitUpdater
|
|
}:
|
|
|
|
perlPackages.buildPerlPackage rec {
|
|
pname = "fbmenugen";
|
|
version = "0.87";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "trizen";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "A0yhoK/cPp3JlNZacgLaDhaU838PpFna7luQKNDvyOg=";
|
|
};
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./0001-Fix-paths.patch;
|
|
xmessage = xorg.xmessage;
|
|
inherit fluxbox gnused;
|
|
})
|
|
];
|
|
|
|
outputs = [ "out" ];
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
fluxbox
|
|
gnused
|
|
perlPackages.DataDump
|
|
perlPackages.FileDesktopEntry
|
|
perlPackages.Gtk3
|
|
perlPackages.LinuxDesktopFiles
|
|
perlPackages.perl
|
|
xorg.xmessage
|
|
];
|
|
|
|
dontConfigure = true;
|
|
|
|
dontBuild = true;
|
|
|
|
postPatch = ''
|
|
substituteInPlace fbmenugen --subst-var-by fbmenugen $out
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -D -t $out/bin ${pname}
|
|
install -D -t $out/etc/xdg/${pname} schema.pl
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram "$out/bin/${pname}" --prefix PERL5LIB : "$PERL5LIB"
|
|
'';
|
|
|
|
passthru.updateScript = gitUpdater { };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/trizen/fbmenugen";
|
|
description = "Simple menu generator for the Fluxbox Window Manager";
|
|
mainProgram = "fbmenugen";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|