biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / display-managers / greetd / regreet.nix
blobff0511a15c1c3b899882363068715d109dc6930e
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , pkg-config
5 , wrapGAppsHook4
6 , glib
7 , gtk4
8 , pango
9 , librsvg
12 rustPlatform.buildRustPackage rec {
13   pname = "regreet";
14   version = "0.1.1";
16   src = fetchFromGitHub {
17     owner = "rharish101";
18     repo = "ReGreet";
19     rev = version;
20     hash = "sha256-MPLlHYTfDyL2Uy50A4lVke9SblXCErgJ24SP3kFuIPw=";
21   };
23   cargoHash = "sha256-dR6veXCGVMr5TbCvP0EqyQKTG2XM65VHF9U2nRWyzfA=";
25   buildFeatures = [ "gtk4_8" ];
27   nativeBuildInputs = [ pkg-config wrapGAppsHook4 ];
28   buildInputs = [ glib gtk4 pango librsvg ];
30   meta = with lib; {
31     description = "Clean and customizable greeter for greetd";
32     homepage = "https://github.com/rharish101/ReGreet";
33     license = licenses.gpl3Plus;
34     maintainers = with maintainers; [ fufexan ];
35     platforms = platforms.linux;
36     mainProgram = "regreet";
37   };