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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
612 B
Nix
Raw Normal View History

2020-10-31 16:05:46 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "tuigreet";
2022-01-24 13:40:02 +00:00
version = "0.7.2";
2020-10-31 16:05:46 +00:00
src = fetchFromGitHub {
owner = "apognu";
repo = pname;
rev = version;
2022-01-24 13:40:02 +00:00
sha256 = "sha256-Mu4GGlX7ZjBaBECXRD6iJCqDMSzcj17BriJ6Nas0J70=";
2020-10-31 16:05:46 +00:00
};
2022-01-24 13:40:02 +00:00
cargoSha256 = "sha256-H5xqk7Yd3M8sFGHlmhAS0fhh3eM4dkvkNQGVxRSXUJs=";
2020-10-31 16:05:46 +00:00
meta = with lib; {
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;
};
}