vassal 3.6.13 -> 3.6.14 https://github.com/vassalengine/vassal/releases attrpath: vassal Checking auto update branch... No auto update branch exists Old version 3.6.13" not present in master derivation file with contents: { lib , stdenv , fetchzip , glib , jre , makeWrapper , wrapGAppsHook }: stdenv.mkDerivation rec { pname = "VASSAL"; version = "3.6.14"; src = fetchzip { url = "https://github.com/vassalengine/vassal/releases/download/${version}/${pname}-${version}-linux.tar.bz2"; sha256 = "sha256-0/QJyntLV1DLzLJ8p4f+tCXPKl3DMf+j4/gkI+Mt+rc="; }; buildInputs = [ glib ]; nativeBuildInputs = [ makeWrapper wrapGAppsHook ]; installPhase = '' runHook preInstall mkdir -p $out/bin $out/share/vassal $out/doc cp CHANGES LICENSE README.md $out cp -R lib/* $out/share/vassal cp -R doc/* $out/doc makeWrapper ${jre}/bin/java $out/bin/vassal \ --add-flags "-Duser.dir=$out -cp $out/share/vassal/Vengine.jar \ VASSAL.launch.ModuleManager" runHook postInstall ''; # Don't move doc to share/, VASSAL expects it to be in the root forceShare = [ "man" "info" ]; meta = with lib; { description = "A free, open-source boardgame engine"; homepage = "https://vassalengine.org/"; sourceProvenance = with sourceTypes; [ binaryBytecode ]; license = licenses.lgpl21Only; maintainers = with maintainers; [ tvestelind ]; platforms = platforms.unix; mainProgram = "vassal"; }; }