Merge pull request #157187 from dotlambda/tiled-python3
tiled: use python3
This commit is contained in:
commit
3dbe8ff6d6
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
{ lib, mkDerivation, fetchFromGitHub, pkg-config, qmake
|
{ lib, mkDerivation, fetchFromGitHub, pkg-config, qmake
|
||||||
, python2, qtbase, qttools }:
|
, python3, qtbase, qttools }:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "tiled";
|
pname = "tiled";
|
||||||
|
@ -13,7 +13,7 @@ mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config qmake ];
|
nativeBuildInputs = [ pkg-config qmake ];
|
||||||
buildInputs = [ python2 qtbase qttools ];
|
buildInputs = [ python3 qtbase qttools ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Free, easy to use and flexible tile map editor";
|
description = "Free, easy to use and flexible tile map editor";
|
||||||
|
|
Loading…
Reference in a new issue