Unverified Commit 61f87a8d authored by Mel Bourgeois's avatar Mel Bourgeois
Browse files

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
parent 34c43658
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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";