nixpkgs/pkgs/applications/editors/tiled/default.nix

33 lines
843 B
Nix
Raw Normal View History

2017-06-02 15:40:19 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, qmake
, python, qtbase, qttools, zlib }:
let
# qtEnv = with qt5; env "qt-${qtbase.version}" [ qtbase qttools ];
in stdenv.mkDerivation rec {
name = "tiled-${version}";
2017-03-19 23:34:46 +00:00
version = "0.18.2";
2013-08-14 01:23:15 +00:00
2017-03-19 23:34:46 +00:00
src = fetchFromGitHub {
owner = "bjorn";
repo = "tiled";
rev = "v${version}";
sha256 = "087jl36g6w2g5l70gz573iwyvx3r7i8fijl3y4mmmf8pyqdyq1n2";
2013-08-14 01:23:15 +00:00
};
2017-06-02 15:40:19 +00:00
nativeBuildInputs = [ pkgconfig qmake ];
buildInputs = [ python qtbase qttools ];
enableParallelBuilding = true;
2013-08-14 01:23:15 +00:00
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;
2017-03-19 23:34:46 +00:00
maintainers = [ maintainers.nckx ];
2013-08-14 01:23:15 +00:00
};
}