nixpkgs/pkgs/os-specific/linux/wlgreet/default.nix
Brandon Weeks 313ae130e4 wlgreet: 0.3 -> 2022-01-25
wlgreet is broken on wlroots 0.15.5 or later (#151234) due to a
protocol negotiation bug in wlgreet. The bug has been fixed upstream
in 8517e57.
2022-02-09 00:28:28 -08:00

27 lines
720 B
Nix

{ lib
, rustPlatform
, fetchFromSourcehut
}:
rustPlatform.buildRustPackage rec {
pname = "wlgreet-unstable";
version = "2022-01-25";
src = fetchFromSourcehut {
owner = "~kennylevinsen";
repo = "wlgreet";
rev = "8517e578cb64a8fb3bd8f8a438cdbe46f208b87c";
sha256 = "0la4xlikw61cxvbkil1d22dgvazi7rs17n5i2z02090fvnfxxzxh";
};
cargoSha256 = "651d2bf01612534f1c4b0472c812095a86eb064d16879380c87f684c04fe0d8d";
meta = with lib; {
description = "Raw wayland greeter for greetd, to be run under sway or similar";
homepage = "https://git.sr.ht/~kennylevinsen/wlgreet";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ luc65r ];
platforms = platforms.linux;
};
}