about summary refs log tree commit diff
path: root/pkgs/applications/editors/tiled
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-12-19 20:25:57 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-12-20 07:56:46 -0600
commite292103d463e2818416e3b238d7a74f7bb369ae6 (patch)
tree6b8ab8998da89793d6e156e94e72c7fa74a3ed54 /pkgs/applications/editors/tiled
parent07a79f2a9b3fa565d8fd58f71213da620352e0cf (diff)
downloadnixlib-e292103d463e2818416e3b238d7a74f7bb369ae6.tar
nixlib-e292103d463e2818416e3b238d7a74f7bb369ae6.tar.gz
nixlib-e292103d463e2818416e3b238d7a74f7bb369ae6.tar.bz2
nixlib-e292103d463e2818416e3b238d7a74f7bb369ae6.tar.lz
nixlib-e292103d463e2818416e3b238d7a74f7bb369ae6.tar.xz
nixlib-e292103d463e2818416e3b238d7a74f7bb369ae6.tar.zst
nixlib-e292103d463e2818416e3b238d7a74f7bb369ae6.zip
tiled: Qt 5 infrastructure update
Diffstat (limited to 'pkgs/applications/editors/tiled')
-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";