nixpkgs/pkgs/games/vassal/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchzip
, glib
, jre
, makeWrapper
, wrapGAppsHook3
}:
2016-01-23 01:42:51 +00:00
stdenv.mkDerivation rec {
pname = "VASSAL";
2024-05-11 19:27:03 +00:00
version = "3.7.12";
2016-01-23 01:42:51 +00:00
src = fetchzip {
url = "https://github.com/vassalengine/vassal/releases/download/${version}/${pname}-${version}-linux.tar.bz2";
2024-05-11 19:27:03 +00:00
sha256 = "sha256-pNpDaGx/h3W+AsX965zu3zZ94kMYvh1pV8C8qYN0imc=";
2016-01-23 01:42:51 +00:00
};
buildInputs = [
glib
];
nativeBuildInputs = [
makeWrapper
wrapGAppsHook3
];
2016-01-23 01:42:51 +00:00
installPhase = ''
runHook preInstall
2016-01-23 01:42:51 +00:00
mkdir -p $out/bin $out/share/vassal $out/doc
cp CHANGES LICENSE README.md $out
2016-01-23 01:42:51 +00:00
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
2016-01-23 01:42:51 +00:00
'';
# Don't move doc to share/, VASSAL expects it to be in the root
forceShare = [ "man" "info" ];
meta = with lib; {
description = "Free, open-source boardgame engine";
homepage = "https://vassalengine.org/";
sourceProvenance = with sourceTypes; [ binaryBytecode ];
license = licenses.lgpl21Only;
2016-01-23 01:42:51 +00:00
maintainers = with maintainers; [ tvestelind ];
2021-03-12 05:21:42 +00:00
platforms = platforms.unix;
2023-01-25 11:28:27 +00:00
mainProgram = "vassal";
2016-01-23 01:42:51 +00:00
};
}