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

29 lines
725 B
Nix
Raw Normal View History

{ lib, mkDerivation, fetchFromGitHub, pkg-config, qmake
, python, qtbase, qttools }:
mkDerivation rec {
2019-03-13 23:41:25 +00:00
pname = "tiled";
2021-06-20 07:05:17 +00:00
version = "1.7.0";
2013-08-14 01:23:15 +00:00
2017-03-19 23:34:46 +00:00
src = fetchFromGitHub {
owner = "bjorn";
2019-03-13 23:41:25 +00:00
repo = pname;
2017-03-19 23:34:46 +00:00
rev = "v${version}";
2021-06-20 07:05:17 +00:00
sha256 = "sha256-XVIkyf9cQZXjFuGGCliCSY22X8EkoPEl1EpGCrMTsgY=";
2013-08-14 01:23:15 +00:00
};
nativeBuildInputs = [ pkg-config qmake ];
buildInputs = [ python qtbase qttools ];
meta = with lib; {
description = "Free, easy to use and flexible tile map editor";
2020-03-04 12:43:57 +00:00
homepage = "https://www.mapeditor.org/";
license = with licenses; [
bsd2 # libtiled and tmxviewer
gpl2Plus # all the rest
];
2018-02-02 08:09:53 +00:00
maintainers = with maintainers; [ dywedir ];
platforms = platforms.linux;
2013-08-14 01:23:15 +00:00
};
}