9 rustPlatform.buildRustPackage rec {
12 src = fetchFromGitHub {
13 owner = "AndreasBackx";
16 hash = "sha256-b8juIhJ3kh+NJc8RUVVoatqjWISSW0ir/vk2Dz/428Y=";
18 cargoHash = "sha256-LGxFRGzQ8jOfxT5di3+YGqfS5KM4+Br6KlTFpPbkJyU=";
27 # the program looks for libwayland-client.so at runtime
28 wrapProgram $out/bin/waycorner \
29 --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ wayland ]}
33 description = "Hot corners for Wayland";
34 mainProgram = "waycorner";
35 changelog = "https://github.com/AndreasBackx/waycorner/blob/main/CHANGELOG.md";
36 homepage = "https://github.com/AndreasBackx/waycorner";
37 platforms = platforms.linux;
38 license = licenses.mit;
39 maintainers = with maintainers; [ NotAShelf ];