2022-08-21 13:32:41 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
2023-08-04 22:07:22 +00:00
|
|
|
, fetchFromSourcehut
|
2022-08-21 13:32:41 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "wayout";
|
|
|
|
version = "1.1.3";
|
|
|
|
|
|
|
|
src = fetchFromSourcehut {
|
|
|
|
owner = "~shinyzenith";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-EzRetxx0NojhBlBPwhQ7p9rGXDUBlocVqxcEVGIF3+0=";
|
|
|
|
};
|
|
|
|
|
|
|
|
cargoSha256 = "sha256-QlxXbfeWJdCythYRRLSpJbTzKkwrL4kmAfyL3tRt194=";
|
|
|
|
|
|
|
|
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 ];
|
2022-09-22 12:36:57 +00:00
|
|
|
platforms = platforms.linux;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "wayout";
|
2022-08-21 13:32:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|