cb0ac866ea
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. This update was made based on information from https://repology.org/metapackage/tiled/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.1.4 with grep in /nix/store/zq69nbafa5zpw6l8i0a2vq4z1yzbhl6b-tiled-1.1.4 - directory tree listing: https://gist.github.com/a9382bc683245aa13b0c434a9a7a6b63
31 lines
776 B
Nix
31 lines
776 B
Nix
{ stdenv, fetchFromGitHub, pkgconfig, qmake
|
|
, python, qtbase, qttools, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tiled-${version}";
|
|
version = "1.1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bjorn";
|
|
repo = "tiled";
|
|
rev = "v${version}";
|
|
sha256 = "0ln8lis9g23wp3w70xwbkzqmmbkd02cdx6z7msw9lrpkjzkj7mlr";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig qmake ];
|
|
buildInputs = [ python qtbase qttools ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Free, easy to use and flexible tile map editor";
|
|
homepage = http://www.mapeditor.org/;
|
|
license = with licenses; [
|
|
bsd2 # libtiled and tmxviewer
|
|
gpl2Plus # all the rest
|
|
];
|
|
maintainers = with maintainers; [ dywedir ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|