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

31 lines
766 B
Nix
Raw Normal View History

{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake
, python, qtbase, qttools }:
mkDerivation rec {
2019-03-13 16:41:25 -07:00
pname = "tiled";
2020-01-26 04:41:44 -08:00
version = "1.3.2";
2013-08-13 18:23:15 -07:00
2017-03-19 16:34:46 -07:00
src = fetchFromGitHub {
owner = "bjorn";
2019-03-13 16:41:25 -07:00
repo = pname;
2017-03-19 16:34:46 -07:00
rev = "v${version}";
2020-01-26 04:41:44 -08:00
sha256 = "1jfr9ngsbkn9j3yvy3mnx0llfwmk39dj8kfiy9fawkhw0v4bzjbd";
2013-08-13 18:23:15 -07:00
};
2017-06-02 08:40:19 -07:00
nativeBuildInputs = [ pkgconfig qmake ];
buildInputs = [ python qtbase qttools ];
enableParallelBuilding = true;
2013-08-13 18:23:15 -07:00
meta = with stdenv.lib; {
description = "Free, easy to use and flexible tile map editor";
2018-04-29 07:09:11 -07:00
homepage = https://www.mapeditor.org/;
license = with licenses; [
bsd2 # libtiled and tmxviewer
gpl2Plus # all the rest
];
2018-02-02 00:09:53 -08:00
maintainers = with maintainers; [ dywedir ];
platforms = platforms.linux;
2013-08-13 18:23:15 -07:00
};
}