regreet: add support for svg icons

This commit is contained in:
Alexandre Acebedo 2023-08-15 22:01:51 +02:00
parent 8eae78f07f
commit 368126c271

View file

@ -2,9 +2,11 @@
, rustPlatform , rustPlatform
, fetchFromGitHub , fetchFromGitHub
, pkg-config , pkg-config
, wrapGAppsHook
, glib , glib
, gtk4 , gtk4
, pango , pango
, librsvg
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
@ -22,8 +24,8 @@ rustPlatform.buildRustPackage rec {
buildFeatures = [ "gtk4_8" ]; buildFeatures = [ "gtk4_8" ];
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config wrapGAppsHook];
buildInputs = [ glib gtk4 pango ]; buildInputs = [ glib gtk4 pango librsvg ];
meta = with lib; { meta = with lib; {
description = "Clean and customizable greeter for greetd"; description = "Clean and customizable greeter for greetd";