biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / display-managers / greetd / tuigreet.nix
blob11ca43c61436b13e334d0fd8c292100fda1ee5d7
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "tuigreet";
8   version = "0.9.1";
10   src = fetchFromGitHub {
11     owner = "apognu";
12     repo = "tuigreet";
13     rev = "refs/tags/${version}";
14     sha256 = "sha256-e0YtpakEaaWdgu+bMr2VFoUc6+SUMFk4hYtSyk5aApY=";
15   };
17   cargoHash = "sha256-RkJjAmZ++4nc/lLh8g0LxGq2DjZGxQEjFOl8Yzx116A=";
19   meta = {
20     description = "Graphical console greeter for greetd";
21     homepage = "https://github.com/apognu/tuigreet";
22     changelog = "https://github.com/apognu/tuigreet/releases/tag/${version}";
23     license = lib.licenses.gpl3Plus;
24     maintainers = with lib.maintainers; [ luc65r ];
25     platforms = lib.platforms.linux;
26     mainProgram = "tuigreet";
27   };