mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
37 lines
1 KiB
Nix
37 lines
1 KiB
Nix
{ lib, stdenv, fetchzip, jre, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "VASSAL";
|
|
version = "3.5.8";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/vassalengine/vassal/releases/download/${version}/${pname}-${version}-linux.tar.bz2";
|
|
sha256 = "sha256-IJ3p7+0fs/2dCbE1BOb2580upR9W/1R2/e3xmkAsJ+M=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
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"
|
|
'';
|
|
|
|
# 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 = "http://www.vassalengine.org/";
|
|
license = licenses.lgpl21Only;
|
|
maintainers = with maintainers; [ tvestelind ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|