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