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-14 00:41:25 +01:00
pname = "tiled";
2019-05-17 08:58:58 +02:00
version = "1.2.4";
2013-08-14 03:23:15 +02:00
2017-03-20 00:34:46 +01:00
src = fetchFromGitHub {
owner = "bjorn";
2019-03-14 00:41:25 +01:00
repo = pname;
2017-03-20 00:34:46 +01:00
rev = "v${version}";
2019-05-17 08:58:58 +02:00
sha256 = "18a0pkq8j20v1njrl0sswm0ch10c6c4fas7q9kk2d2fd610ga6gh";
2013-08-14 03:23:15 +02:00
};
2017-06-02 17:40:19 +02:00
nativeBuildInputs = [ pkgconfig qmake ];
buildInputs = [ python qtbase qttools ];
enableParallelBuilding = true;
2013-08-14 03:23:15 +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/;
license = with licenses; [
bsd2 # libtiled and tmxviewer
gpl2Plus # all the rest
];
2018-02-02 09:09:53 +01:00
maintainers = with maintainers; [ dywedir ];
platforms = platforms.linux;
2013-08-14 03:23:15 +02:00
};
}