3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/editors/tiled/default.nix

31 lines
771 B
Nix
Raw Normal View History

2017-06-02 16:40:19 +01:00
{ stdenv, fetchFromGitHub, pkgconfig, qmake
, python, qtbase, qttools }:
2018-01-07 13:18:32 +00:00
stdenv.mkDerivation rec {
name = "tiled-${version}";
2018-11-14 21:26:06 +00:00
version = "1.2.1";
2013-08-14 02:23:15 +01:00
2017-03-19 23:34:46 +00:00
src = fetchFromGitHub {
owner = "bjorn";
repo = "tiled";
rev = "v${version}";
2018-11-14 21:26:06 +00:00
sha256 = "077fv3kn3fy06z8f414r3ny4a04l05prppmkyvjqhnwf1i1jck1w";
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
};
}