nixpkgs/pkgs/os-specific/linux/wlgreet/default.nix

27 lines
653 B
Nix
Raw Normal View History

2020-10-31 16:56:59 +01:00
{ lib
, rustPlatform
, fetchFromSourcehut
}:
rustPlatform.buildRustPackage rec {
pname = "wlgreet";
2021-06-21 20:42:59 +02:00
version = "0.3";
2020-10-31 16:56:59 +01:00
src = fetchFromSourcehut {
owner = "~kennylevinsen";
repo = pname;
2021-06-21 20:42:59 +02:00
rev = version;
2020-10-31 16:56:59 +01:00
sha256 = "0n0lzg3y1z5s9s6kfkdj5q8w67bqpw08hqfccc5kz0ninzy9j0cc";
};
2021-06-21 20:42:59 +02:00
cargoSha256 = "1lwy8xmkl9n3fj3wlf80wp728nn9p5rjnbgmm2cbpqxklcgbmxhm";
2020-10-31 16:56:59 +01:00
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;
};
}