summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrancesco Gazzetta <fgaz@fgaz.me>2021-11-13 17:49:46 +0100
committerFrancesco Gazzetta <fgaz@fgaz.me>2021-11-13 17:49:46 +0100
commitdf177cf39b6d9e1a10967079cb32970401d91a25 (patch)
tree18371181c6b3e2a704a102b14b395b5c8c2fee30
parente29d818477aa67a4def398e2b510437ecfbd4704 (diff)
downloadnixpkgs-df177cf39b6d9e1a10967079cb32970401d91a25.tar
nixpkgs-df177cf39b6d9e1a10967079cb32970401d91a25.tar.gz
nixpkgs-df177cf39b6d9e1a10967079cb32970401d91a25.tar.bz2
nixpkgs-df177cf39b6d9e1a10967079cb32970401d91a25.tar.lz
nixpkgs-df177cf39b6d9e1a10967079cb32970401d91a25.tar.xz
nixpkgs-df177cf39b6d9e1a10967079cb32970401d91a25.tar.zst
nixpkgs-df177cf39b6d9e1a10967079cb32970401d91a25.zip
domination: 1.2.3 -> 1.2.4
-rw-r--r--pkgs/games/domination/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/games/domination/default.nix b/pkgs/games/domination/default.nix
index 2fc4f8d36cb..e73b563c0af 100644
--- a/pkgs/games/domination/default.nix
+++ b/pkgs/games/domination/default.nix
@@ -26,7 +26,7 @@ let
 
 in stdenv.mkDerivation {
   pname = "domination";
-  version = "1.2.3";
+  version = "1.2.4";
 
   # The .zip releases do not contain the build.xml file
   src = fetchsvn {
@@ -34,8 +34,8 @@ in stdenv.mkDerivation {
     # 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".
-    rev = "1964";
-    sha256 = "0718gns8d69a1dfq3ywc9kddl1khnrmxqyal7brckbjgay8dq42f";
+    rev = "2109";
+    sha256 = "sha256-awTaEkv0zUXgrKVKuFzi5sgHgrfiNmAFMODO5U0DL6I=";
   };
 
   nativeBuildInputs = [
@@ -44,7 +44,10 @@ in stdenv.mkDerivation {
     makeWrapper
   ];
 
-  buildPhase = "ant";
+  buildPhase = ''
+    cd swingUI
+    ant
+  '';
 
   installPhase = ''
     # Remove unnecessary files and launchers (they'd need to be wrapped anyway)