2020-10-31 16:05:46 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "tuigreet";
|
2022-07-13 22:45:51 +00:00
|
|
|
version = "0.8.0";
|
2020-10-31 16:05:46 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "apognu";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-07-13 22:45:51 +00:00
|
|
|
sha256 = "sha256-8/2I6bk29/GqZ1ACuN9RgBiGAy7yt0iw2fagHfu4/BI=";
|
2020-10-31 16:05:46 +00:00
|
|
|
};
|
|
|
|
|
2022-07-13 22:45:51 +00:00
|
|
|
cargoSha256 = "sha256-fOs9a0/1c8Kh4JA5up3XSQ+km/FwSYzl0w4UDL4yU4M=";
|
2020-10-31 16:05:46 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2022-03-16 01:59:47 +00:00
|
|
|
description = "Graphical console greeter for greetd";
|
2020-10-31 16:05:46 +00:00
|
|
|
homepage = "https://github.com/apognu/tuigreet";
|
|
|
|
license = licenses.gpl3Plus;
|
2022-01-07 00:21:43 +00:00
|
|
|
maintainers = with maintainers; [ luc65r ivar ];
|
2020-10-31 16:05:46 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|