3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/linux/tuigreet/default.nix

27 lines
606 B
Nix
Raw Normal View History

2020-10-31 16:05:46 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "tuigreet";
2021-08-19 19:43:02 +01:00
version = "0.6.1";
2020-10-31 16:05:46 +00:00
src = fetchFromGitHub {
owner = "apognu";
repo = pname;
rev = version;
2021-08-19 19:43:02 +01:00
sha256 = "sha256-Exw3HPNFh1yiUfDfaIDiz2PemnVLRmefD4ydgMiHQAc=";
2020-10-31 16:05:46 +00:00
};
2021-08-19 19:43:02 +01:00
cargoSha256 = "sha256-/JNGyAEZlb4YilsoXtaXekXNVev6sdVxS4pEcPFh7Bg=";
2020-10-31 16:05:46 +00:00
meta = with lib; {
description = "Graphical console greter for greetd";
homepage = "https://github.com/apognu/tuigreet";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ luc65r ];
platforms = platforms.linux;
};
}