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

31 lines
759 B
Nix
Raw Normal View History

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