2022-12-07T02:37:57 tiled 1.8.4 -> 1.9.2 https://github.com/bjorn/tiled/releases 2022-12-07T02:37:59 attrpath: tiled 2022-12-07T02:37:59 Checking auto update branch... 2022-12-07T02:37:59 No auto update branch exists 2022-12-07T02:38:00 Old version 1.8.4" not present in master derivation file with contents: { lib , stdenv , env , fetchFromGitHub , pkg-config , qbs , wrapQtAppsHook , qtbase , qtdeclarative , qttools , qtsvg , zlib , libGL }: let qtEnv = env "tiled-qt-env" [ qtbase qtdeclarative qtsvg qttools ]; in stdenv.mkDerivation rec { pname = "tiled"; version = "1.9.2"; src = fetchFromGitHub { owner = "bjorn"; repo = pname; rev = "v${version}"; sha256 = "sha256-026OO7r8n1BUapUtKRHvqKdSZiClTQIiYfajiC2TAcQ="; }; nativeBuildInputs = [ pkg-config qbs wrapQtAppsHook ]; buildInputs = [ qtEnv zlib libGL ]; outputs = [ "out" "dev" ]; strictDeps = true; configurePhase = '' runHook preConfigure qbs setup-qt --settings-dir . ${qtEnv}/bin/qmake qtenv qbs config --settings-dir . defaultProfile qtenv qbs resolve --settings-dir . config:release qbs.installPrefix:/ projects.Tiled.installHeaders:true runHook postConfigure ''; buildPhase = '' runHook preBuild qbs build --settings-dir . config:release runHook postBuild ''; installPhase = '' runHook preInstall qbs install --settings-dir . --install-root $out config:release runHook postInstall ''; meta = with lib; { description = "Free, easy to use and flexible tile map editor"; homepage = "https://www.mapeditor.org/"; license = with licenses; [ bsd2 # libtiled and tmxviewer gpl2Plus # all the rest ]; maintainers = with maintainers; [ dywedir ]; platforms = platforms.linux; }; }