summary refs log tree commit diff
path: root/pkgs/games/gcompris
diff options
context:
space:
mode:
authorStephen <stephengroat@users.noreply.github.com>2019-03-05 16:20:57 -0800
committerGitHub <noreply@github.com>2019-03-05 16:20:57 -0800
commit86cb9d3b6183d8ae0302f80fb4aae45389675c6a (patch)
tree63b58e62d8ce2d5b2b3537b6e7172dbb29336611 /pkgs/games/gcompris
parentfe190d2e83e3fe953d6f37096ae61b113dbe2ae4 (diff)
downloadnixpkgs-86cb9d3b6183d8ae0302f80fb4aae45389675c6a.tar
nixpkgs-86cb9d3b6183d8ae0302f80fb4aae45389675c6a.tar.gz
nixpkgs-86cb9d3b6183d8ae0302f80fb4aae45389675c6a.tar.bz2
nixpkgs-86cb9d3b6183d8ae0302f80fb4aae45389675c6a.tar.lz
nixpkgs-86cb9d3b6183d8ae0302f80fb4aae45389675c6a.tar.xz
nixpkgs-86cb9d3b6183d8ae0302f80fb4aae45389675c6a.tar.zst
nixpkgs-86cb9d3b6183d8ae0302f80fb4aae45389675c6a.zip
gcompris: fix build
Diffstat (limited to 'pkgs/games/gcompris')
-rw-r--r--pkgs/games/gcompris/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/gcompris/default.nix b/pkgs/games/gcompris/default.nix
index 52d0bf778f9..8425933928d 100644
--- a/pkgs/games/gcompris/default.nix
+++ b/pkgs/games/gcompris/default.nix
@@ -1,4 +1,4 @@
-{stdenv, cmake, qtbase, fetchurl, qtdeclarative, qtmultimedia, qttools, qtsensors, qmlbox2d, gettext, qtquickcontrols, qtgraphicaleffects, makeWrapper,
+{stdenv, cmake, qtbase, fetchurl, qtdeclarative, qtmultimedia, qttools, qtsensors, qmlbox2d, gettext, qtquickcontrols, qtgraphicaleffects, qtxmlpatterns, makeWrapper,
   gst_all_1, ninja
 }:
 stdenv.mkDerivation rec {
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
   cmakeFlags = "-DQML_BOX2D_LIBRARY=${qmlbox2d}/${qtbase.qtQmlPrefix}/Box2D.2.0";
 
   nativeBuildInputs = [ cmake ninja makeWrapper ];
-  buildInputs = [ qtbase qtdeclarative qttools qtsensors qmlbox2d gettext qtquickcontrols qtmultimedia qtgraphicaleffects] ++ soundPlugins;
+  buildInputs = [ qtbase qtdeclarative qttools qtsensors qmlbox2d gettext qtquickcontrols qtmultimedia qtgraphicaleffects qtxmlpatterns] ++ soundPlugins;
   soundPlugins = with gst_all_1; [gst-plugins-good gstreamer gst-plugins-base gst-plugins-bad];
 
   postInstall = ''