nixpkgs/pkgs/games/domination/default.nix

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

109 lines
2.9 KiB
Nix
Raw Normal View History

2021-01-15 04:31:39 +00:00
{ lib, stdenv
2020-11-21 14:57:21 +00:00
, fetchsvn
# jdk8 is needed for building, but the game runs on newer jres as well
, jdk8
, jre
, ant
, makeWrapper
, makeDesktopItem
, copyDesktopItems
2021-11-13 22:00:20 +00:00
, nixosTests
2020-11-21 14:57:21 +00:00
}:
let
desktopItem = makeDesktopItem {
name = "domination";
2020-11-21 14:57:21 +00:00
desktopName = "Domination";
exec = "domination";
icon = "domination";
};
editorDesktopItem = makeDesktopItem {
name = "domination-map-editor";
2020-11-21 14:57:21 +00:00
desktopName = "Domination Map Editor";
exec = "domination-map-editor";
icon = "domination";
};
in stdenv.mkDerivation {
pname = "domination";
2023-08-05 08:52:05 +00:00
version = "1.2.9";
2020-11-21 14:57:21 +00:00
# The .zip releases do not contain the build.xml file
src = fetchsvn {
url = "https://svn.code.sf.net/p/domination/code/Domination";
# There are no tags in the repository.
# Look for commits like "new version x.y.z info on website"
# or "website update for x.y.z".
2023-08-05 08:52:05 +00:00
rev = "2470";
hash = "sha256-ghq7EGg++mTOzA3ASzXhk97fzy5/n9vyaRzxp12X3/4=";
2020-11-21 14:57:21 +00:00
};
nativeBuildInputs = [
jdk8
ant
makeWrapper
copyDesktopItems
2020-11-21 14:57:21 +00:00
];
2021-11-13 16:49:46 +00:00
buildPhase = ''
runHook preBuild
2021-11-13 16:49:46 +00:00
cd swingUI
ant
runHook postBuild
2021-11-13 16:49:46 +00:00
'';
2020-11-21 14:57:21 +00:00
desktopItems = [
desktopItem
editorDesktopItem
];
2020-11-21 14:57:21 +00:00
installPhase = ''
runHook preInstall
2020-11-21 14:57:21 +00:00
# Remove unnecessary files and launchers (they'd need to be wrapped anyway)
rm -r \
build/game/src.zip \
build/game/*.sh \
build/game/*.cmd \
build/game/*.exe \
build/game/*.app
mkdir -p $out/share/domination
cp -r build/game/* $out/share/domination/
# Reimplement the two launchers mentioned in Unix_shortcutSpec.xml with makeWrapper
mkdir -p $out/bin
makeWrapper ${jre}/bin/java $out/bin/domination \
--chdir "$out/share/domination" \
2020-11-21 14:57:21 +00:00
--add-flags "-jar $out/share/domination/Domination.jar"
makeWrapper ${jre}/bin/java $out/bin/domination-map-editor \
--chdir "$out/share/domination" \
2020-11-21 14:57:21 +00:00
--add-flags "-cp $out/share/domination/Domination.jar net.yura.domination.ui.swinggui.SwingGUIFrame"
install -Dm644 build/game/resources/icon.png $out/share/pixmaps/domination.png
runHook postInstall
2020-11-21 14:57:21 +00:00
'';
2021-11-13 22:00:20 +00:00
passthru.tests = {
domination-starts = nixosTests.domination;
};
2021-01-15 04:31:39 +00:00
meta = with lib; {
homepage = "https://domination.sourceforge.net/";
downloadPage = "https://domination.sourceforge.net/download.shtml";
2020-11-21 14:57:21 +00:00
description = "A game that is a bit like the board game Risk or RisiKo";
longDescription = ''
Domination is a game that is a bit like the well known board game of Risk
or RisiKo. It has many game options and includes many maps.
It includes a map editor, a simple map format, multiplayer network play,
single player, hotseat, 5 user interfaces and many more features.
'';
sourceProvenance = with sourceTypes; [
fromSource
binaryBytecode # source bundles dependencies as jars
];
2020-11-21 14:57:21 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ fgaz ];
platforms = platforms.all;
};
}