2017-06-02 17:40:19 +02:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, qmake
|
2016-04-23 01:29:34 +02:00
|
|
|
, python, qtbase, qttools, zlib }:
|
2015-06-24 11:12:07 +02:00
|
|
|
|
2018-01-07 14:18:32 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-06-24 11:12:07 +02:00
|
|
|
name = "tiled-${version}";
|
2018-07-21 17:55:50 +02:00
|
|
|
version = "1.1.6";
|
2013-08-14 03:23:15 +02:00
|
|
|
|
2017-03-20 00:34:46 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bjorn";
|
|
|
|
repo = "tiled";
|
|
|
|
rev = "v${version}";
|
2018-07-21 17:55:50 +02:00
|
|
|
sha256 = "09qnlinm3q9xwp6b6cajs49fx8y6pkpixhji68bhs53m5hpvfg4s";
|
2013-08-14 03:23:15 +02:00
|
|
|
};
|
|
|
|
|
2017-06-02 17:40:19 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig qmake ];
|
2016-04-23 01:29:34 +02:00
|
|
|
buildInputs = [ python qtbase qttools ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2013-08-14 03:23:15 +02:00
|
|
|
|
2016-04-23 01:29:34 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Free, easy to use and flexible tile map editor";
|
2018-04-29 16:09:11 +02: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
|
|
|
};
|
|
|
|
}
|