summary refs log blame commit diff
path: root/pkgs/os-specific/linux/tuigreet/default.nix
blob: 95de5b8c8d9c12f4aa7fa11ed0dd8cf5aba42afc (plain) (tree)
1
2
3
4
5
6
7
8






                                   
                    




                         
                                                                   

    
                                                                      

                    
                                                         

                                                    
                                                    


                                
{ lib
, rustPlatform
, fetchFromGitHub
}:

rustPlatform.buildRustPackage rec {
  pname = "tuigreet";
  version = "0.7.2";

  src = fetchFromGitHub {
    owner = "apognu";
    repo = pname;
    rev = version;
    sha256 = "sha256-Mu4GGlX7ZjBaBECXRD6iJCqDMSzcj17BriJ6Nas0J70=";
  };

  cargoSha256 = "sha256-H5xqk7Yd3M8sFGHlmhAS0fhh3eM4dkvkNQGVxRSXUJs=";

  meta = with lib; {
    description = "Graphical console greeter for greetd";
    homepage = "https://github.com/apognu/tuigreet";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ luc65r ivar ];
    platforms = platforms.linux;
  };
}