From 61f87a8dc31587ea7738c9e14f46f8a3199874e5 Mon Sep 17 00:00:00 2001 From: Mel Bourgeois Date: Mon, 7 Nov 2022 01:32:04 -0600 Subject: [PATCH] eww: add gdk-pixbuf dependency Without this present, images (particularly SVG) will fail to render in an image widget. It's mentioned as a dependency here: https://github.com/elkowar/eww/issues/302#issuecomment-947627327 --- pkgs/applications/window-managers/eww/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/window-managers/eww/default.nix b/pkgs/applications/window-managers/eww/default.nix index 6420b79072f0..4e74fcd26e77 100644 --- a/pkgs/applications/window-managers/eww/default.nix +++ b/pkgs/applications/window-managers/eww/default.nix @@ -3,6 +3,7 @@ , fetchFromGitHub , pkg-config , gtk3 +, gdk-pixbuf , withWayland ? false , gtk-layer-shell , stdenv @@ -25,7 +26,7 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ pkg-config ]; - buildInputs = [ gtk3 ] ++ lib.optional withWayland gtk-layer-shell; + buildInputs = [ gtk3 gdk-pixbuf ] ++ lib.optional withWayland gtk-layer-shell; buildNoDefaultFeatures = withWayland; buildFeatures = lib.optional withWayland "wayland";