31 lines
776 B
Nix
31 lines
776 B
Nix
{ stdenv, fetchFromGitHub, pkgconfig, qmake
|
|
, python, qtbase, qttools, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tiled-${version}";
|
|
version = "1.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bjorn";
|
|
repo = "tiled";
|
|
rev = "v${version}";
|
|
sha256 = "0rf50w7nkdm70999q1mj7sy5hyjj41qjf4izi849q9a7xnhddv44";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig qmake ];
|
|
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
|
|
];
|
|
maintainers = with maintainers; [ dywedir ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|