31 lines
877 B
Nix
31 lines
877 B
Nix
{ stdenv, fetchurl, pkgconfig, qmakeHook
|
|
, python, qtbase, qttools, zlib }:
|
|
|
|
let
|
|
# qtEnv = with qt5; env "qt-${qtbase.version}" [ qtbase qttools ];
|
|
in stdenv.mkDerivation rec {
|
|
name = "tiled-${version}";
|
|
version = "0.16.1";
|
|
|
|
src = fetchurl {
|
|
name = "${name}.tar.gz";
|
|
url = "https://github.com/bjorn/tiled/archive/v${version}.tar.gz";
|
|
sha256 = "0s1i6yhm1z9ayzjh8cprcc9jvj5m87l9snyqg6w7zlj3q9zn4rn6";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig qmakeHook ];
|
|
buildInputs = [ python qtbase qttools ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Free, easy to use and flexible tile map editor";
|
|
homepage = http://www.mapeditor.org/;
|
|
license = with licenses; [
|
|
bsd2 # libtiled and tmxviewer
|
|
gpl2Plus # all the rest
|
|
];
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
}
|