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

30 lines
799 B
Nix
Raw Normal View History

{ stdenv, fetchurl, qt5, pkgconfig, python }:
let
version = "0.12.3";
sha256 = "001j4lvb5d9h3m6vgz2na07637x6xg4bdvxi2hg4a0j9rikb4y40";
in
2013-08-14 01:23:15 +00:00
stdenv.mkDerivation rec {
name = "tiled-${version}";
2013-08-14 01:23:15 +00:00
src = fetchurl {
url = "https://github.com/bjorn/tiled/archive/v${version}.tar.gz";
inherit sha256;
2013-08-14 01:23:15 +00:00
};
buildInputs = [ qt5.base qt5.tools pkgconfig python ];
2013-08-14 01:23:15 +00:00
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 ];
};
}