From 2de55545ffeb95cf64f1c739cc53568956dfcbef Mon Sep 17 00:00:00 2001 From: Julien Moutinho Date: Sun, 25 Aug 2024 14:10:59 +0200 Subject: [PATCH] gcompris: fix loading of image assets Previously some games were not able to load some WebP image assets, eg. the Erase game failed to display any cute background image, making it unattractive: > qrc:/gcompris/src/activities/erase/Erase.qml:26:20: QML Image: > Error decoding: qrc:/gcompris/src/activities/erase/resource/butterfly.webp: > Unsupported image format --- pkgs/games/gcompris/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/games/gcompris/default.nix b/pkgs/games/gcompris/default.nix index 61778a120f93..cfa4717c05ee 100644 --- a/pkgs/games/gcompris/default.nix +++ b/pkgs/games/gcompris/default.nix @@ -11,6 +11,7 @@ , qtcharts , qtdeclarative , qtgraphicaleffects +, qtimageformats , qtmultimedia , qtquickcontrols2 , qtsensors @@ -41,6 +42,7 @@ stdenv.mkDerivation (finalAttrs: { qtcharts qtdeclarative qtgraphicaleffects + qtimageformats qtmultimedia qtquickcontrols2 qtsensors