diff --git a/pkgs/applications/editors/tiled/default.nix b/pkgs/applications/editors/tiled/default.nix index b885e26fbef..4590baf6b8e 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"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 64e1dbdac97..803b85c287a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3226,7 +3226,7 @@ let thc-hydra = callPackage ../tools/security/thc-hydra { }; - tiled = callPackage ../applications/editors/tiled { }; + tiled = qt5.callPackage ../applications/editors/tiled { }; tinc = callPackage ../tools/networking/tinc { };