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
35 lines
839 B
Nix
35 lines
839 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
nix-update-script,
|
|
rustPlatform,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "sway-overfocus";
|
|
version = "0.2.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "korreman";
|
|
repo = "sway-overfocus";
|
|
rev = "v${version}";
|
|
hash = "sha256-Ik1YkEtmnMdm5bQb5PtqzZZdJxCnGu4Bzt000iV7tc4=";
|
|
};
|
|
|
|
cargoHash = "sha256-sMciCYeuvgY6K7u9HHxIL9EaCUAWGqtbcSjhfcbjdXI=";
|
|
|
|
# Crate without tests.
|
|
doCheck = false;
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
description = "Better focus navigation for sway and i3";
|
|
homepage = "https://github.com/korreman/sway-overfocus";
|
|
changelog = "https://github.com/korreman/sway-overfocus/releases/tag/${src.rev}";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.ivan770 ];
|
|
mainProgram = "sway-overfocus";
|
|
};
|
|
}
|