push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
{
stdenv,
lib,
fetchFromGitHub,
pkg-config,
git,
gtkmm4,
gtk4-layer-shell,
wrapGAppsHook4,
unstableGitUpdater,
}:
stdenv.mkDerivation {
pname = "sysmenu";
version = "0-unstable-2024-06-13";
src = fetchFromGitHub {
owner = "System64fumo";
repo = "sysmenu";
rev = "0b891e5d27f286b867d4a0984ee284a3456de851";
hash = "sha256-zI6dmS+ZqcGrG/joWouqrMNQfTRflP677kYJLJEWTBc=";
};
patches = [
./001-no-runtime-config.patch
./002-cflags-fix.patch
];
nativeBuildInputs = [
pkg-config
git
wrapGAppsHook4
];
buildInputs = [
gtkmm4
gtk4-layer-shell
];
installPhase = ''
runHook preInstall
install -Dm755 sysmenu $out/bin/sysmenu
runHook postInstall
'';
passthru.updateScript = unstableGitUpdater { };
meta = {
description = "Simple program launcher using GTK4";
homepage = "https://github.com/System64fumo/sysmenu";
license = lib.licenses.wtfpl;
mainProgram = "sysmenu";
maintainers = with lib.maintainers; [ matteopacini ];
platforms = lib.platforms.linux;
};
}