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
46 lines
1.0 KiB
Nix
46 lines
1.0 KiB
Nix
{
|
|
cmake,
|
|
fetchFromGitea,
|
|
lib,
|
|
nlohmann_json,
|
|
qt6,
|
|
stdenv,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
version = "1.1";
|
|
pname = "swaymux";
|
|
|
|
src = fetchFromGitea {
|
|
rev = "v${finalAttrs.version}";
|
|
domain = "git.grimmauld.de";
|
|
owner = "Grimmauld";
|
|
repo = "swaymux";
|
|
hash = "sha256-OMJ9wKNuvD1Z9KV7Bp7aIA5gWbBl9PmTdGcGegE0vqM=";
|
|
};
|
|
|
|
buildInputs = [
|
|
qt6.qtwayland
|
|
nlohmann_json
|
|
qt6.qtbase
|
|
];
|
|
nativeBuildInputs = [
|
|
cmake
|
|
qt6.wrapQtAppsHook
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
changelog = "https://git.grimmauld.de/Grimmauld/swaymux/commits/branch/main";
|
|
description = "Program to quickly navigate sway";
|
|
homepage = "https://git.grimmauld.de/Grimmauld/swaymux";
|
|
license = licenses.bsd3;
|
|
longDescription = ''
|
|
Swaymux allows the user to quickly navigate and administrate outputs, workspaces and containers in a tmux-style approach.
|
|
'';
|
|
mainProgram = "swaymux";
|
|
maintainers = with maintainers; [ grimmauld ];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|