about summary refs log tree commit diff
path: root/pkgs/applications/editors/tiled/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/tiled/default.nix')
-rw-r--r--pkgs/applications/editors/tiled/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/tiled/default.nix b/pkgs/applications/editors/tiled/default.nix
index b885e26fbef9..4590baf6b8e2 100644
--- a/pkgs/applications/editors/tiled/default.nix
+++ b/pkgs/applications/editors/tiled/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, qt5, pkgconfig, python }:
+{ stdenv, fetchurl, qtbase, qttools, pkgconfig, python }:
 
 let
   version = "0.12.3";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
     inherit sha256;
   };
 
-  buildInputs = [ qt5.base qt5.tools pkgconfig python ];
+  buildInputs = [ qtbase qttools pkgconfig python ];
 
   preConfigure = "qmake -r PREFIX=$out";