2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake
|
2018-07-21 00:44:44 +00:00
|
|
|
, python, qtbase, qttools }:
|
2015-06-24 09:12:07 +00:00
|
|
|
|
2019-08-26 12:55:56 +00:00
|
|
|
mkDerivation rec {
|
2019-03-13 23:41:25 +00:00
|
|
|
pname = "tiled";
|
2020-11-22 13:33:52 +00:00
|
|
|
version = "1.4.3";
|
2013-08-14 01:23:15 +00:00
|
|
|
|
2017-03-19 23:34:46 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bjorn";
|
2019-03-13 23:41:25 +00:00
|
|
|
repo = pname;
|
2017-03-19 23:34:46 +00:00
|
|
|
rev = "v${version}";
|
2020-11-22 13:33:52 +00:00
|
|
|
sha256 = "0n8p7bp5pqq72c65av3v7wbazwphh78pw27nqvpiyp9y8k5w4pg0";
|
2013-08-14 01:23:15 +00:00
|
|
|
};
|
|
|
|
|
2017-06-02 15:40:19 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig qmake ];
|
2016-04-22 23:29:34 +00:00
|
|
|
buildInputs = [ python qtbase qttools ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2013-08-14 01:23:15 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-04-22 23:29:34 +00:00
|
|
|
description = "Free, easy to use and flexible tile map editor";
|
2020-03-04 12:43:57 +00:00
|
|
|
homepage = "https://www.mapeditor.org/";
|
2016-04-22 23:29:34 +00:00
|
|
|
license = with licenses; [
|
|
|
|
bsd2 # libtiled and tmxviewer
|
|
|
|
gpl2Plus # all the rest
|
|
|
|
];
|
2018-02-02 08:09:53 +00:00
|
|
|
maintainers = with maintainers; [ dywedir ];
|
2016-04-22 23:29:34 +00:00
|
|
|
platforms = platforms.linux;
|
2013-08-14 01:23:15 +00:00
|
|
|
};
|
|
|
|
}
|