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
30 lines
685 B
Nix
30 lines
685 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromSourcehut,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wayout";
|
|
version = "1.1.3";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~shinyzenith";
|
|
repo = "wayout";
|
|
rev = version;
|
|
sha256 = "sha256-EzRetxx0NojhBlBPwhQ7p9rGXDUBlocVqxcEVGIF3+0=";
|
|
};
|
|
|
|
cargoHash = "sha256-RiM9d/aOCnV0t13QQO1fdw+QPGMoF/EjIDA2uttjXcQ=";
|
|
|
|
meta = with lib; {
|
|
description = "Simple output management tool for wlroots based compositors implementing";
|
|
homepage = "https://git.sr.ht/~shinyzenith/wayout";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ onny ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "wayout";
|
|
};
|
|
|
|
}
|