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

25 lines
690 B
Nix
Raw Normal View History

2013-08-14 01:23:15 +00:00
{ stdenv, fetchurl, qt }:
stdenv.mkDerivation rec {
name = "tiled-0.11.0";
2013-08-14 01:23:15 +00:00
src = fetchurl {
url = "https://github.com/bjorn/tiled/archive/v0.11.0.tar.gz";
sha256 = "03a15vbzjfwc8dpifbjvd0gnr208mzmdkgs2nlc8zq6z0a4h4jqd";
2013-08-14 01:23:15 +00:00
};
buildInputs = [ qt ];
preConfigure = "qmake -r PREFIX=$out";
meta = {
description = "A free, easy to use and flexible tile map editor";
homepage = "http://www.mapeditor.org/";
# libtiled and tmxviewer is licensed under 2-calause BSD license.
# The rest is GPL2 or later.
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ iyzsong ];
};
}