mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
28 lines
747 B
Nix
28 lines
747 B
Nix
{ stdenv, fetchurl, qtbase, qttools, pkgconfig, python }:
|
|
|
|
let
|
|
version = "0.12.3";
|
|
sha256 = "001j4lvb5d9h3m6vgz2na07637x6xg4bdvxi2hg4a0j9rikb4y40";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tiled-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/bjorn/tiled/archive/v${version}.tar.gz";
|
|
inherit sha256;
|
|
};
|
|
|
|
buildInputs = [ qtbase qttools pkgconfig python ];
|
|
|
|
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;
|
|
};
|
|
}
|