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