summary refs log tree commit diff
path: root/pkgs/applications/editors/tiled
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-01-28 19:52:46 +0000
committerRobert Schütz <nix@dotlambda.de>2022-01-28 19:53:05 +0000
commit3749e6df5befcee22da5433e8e097036b1c645ac (patch)
tree656d6d619ce85f99a58fee118e5fc8ff62226162 /pkgs/applications/editors/tiled
parent6d7116365a7a3d9435f9390f198e4b771a087a4c (diff)
tiled: use python3
Supported according to https://doc.mapeditor.org/en/stable/manual/python/
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 2c3ddbf80b88b..b0e26a8c7f1d4 100644
--- a/pkgs/applications/editors/tiled/default.nix
+++ b/pkgs/applications/editors/tiled/default.nix
@@ -1,5 +1,5 @@
 { lib, mkDerivation, fetchFromGitHub, pkg-config, qmake
-, python2, qtbase, qttools }:
+, python3, qtbase, qttools }:
 
 mkDerivation rec {
   pname = "tiled";
@@ -13,7 +13,7 @@ mkDerivation rec {
   };
 
   nativeBuildInputs = [ pkg-config qmake ];
-  buildInputs = [ python2 qtbase qttools ];
+  buildInputs = [ python3 qtbase qttools ];
 
   meta = with lib; {
     description = "Free, easy to use and flexible tile map editor";