mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
tiled: use python3
Supported according to https://doc.mapeditor.org/en/stable/manual/python/
This commit is contained in:
parent
6d7116365a
commit
3749e6df5b
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user