summary refs log tree commit diff
path: root/pkgs/games/0ad/default.nix
diff options
context:
space:
mode:
authorAnders Papitto <anderspapitto@gmail.com>2015-08-28 14:34:22 -0700
committerAnders Papitto <anderspapitto@gmail.com>2015-09-08 17:02:02 -0700
commit3455919cd01a4c278be0a345551aa0e71e9d348e (patch)
tree7eef88254b36b173fbfe159d46c60d80f74dc5c6 /pkgs/games/0ad/default.nix
parent4bcde3f244c64170a293d75773429834bb3e701a (diff)
downloadnixlib-3455919cd01a4c278be0a345551aa0e71e9d348e.tar
nixlib-3455919cd01a4c278be0a345551aa0e71e9d348e.tar.gz
nixlib-3455919cd01a4c278be0a345551aa0e71e9d348e.tar.bz2
nixlib-3455919cd01a4c278be0a345551aa0e71e9d348e.tar.lz
nixlib-3455919cd01a4c278be0a345551aa0e71e9d348e.tar.xz
nixlib-3455919cd01a4c278be0a345551aa0e71e9d348e.tar.zst
nixlib-3455919cd01a4c278be0a345551aa0e71e9d348e.zip
0ad: Alpha 17 -> Alpha 18
Diffstat (limited to 'pkgs/games/0ad/default.nix')
-rw-r--r--pkgs/games/0ad/default.nix14
1 files changed, 9 insertions, 5 deletions
diff --git a/pkgs/games/0ad/default.nix b/pkgs/games/0ad/default.nix
index 5a0bdcd70a7e..7ffa44c1fe46 100644
--- a/pkgs/games/0ad/default.nix
+++ b/pkgs/games/0ad/default.nix
@@ -1,5 +1,5 @@
 { stdenv, callPackage, fetchurl, python27
-, pkgconfig, spidermonkey_24, boost, icu, libxml2, libpng
+, pkgconfig, spidermonkey_31, boost, icu, libxml2, libpng
 , libjpeg, zlib, curl, libogg, libvorbis, enet, miniupnpc
 , openal, mesa, xproto, libX11, libXcursor, nspr, SDL
 , gloox, nvidia-texture-tools
@@ -9,7 +9,7 @@
 assert withEditor -> wxGTK != null;
 
 let
-  version = "0.0.17";
+  version = "0.0.18";
 
   releaseType = "alpha";
 
@@ -25,11 +25,11 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "http://releases.wildfiregames.com/0ad-${version}-${releaseType}-unix-build.tar.xz";
-    sha256 = "ef144d44fe8a8abd29a4642999a58a596b8f0d0e1f310065f5ce1dfbe29c3aeb";
+    sha256 = "15q3mv5k3lqzf0wrby2r93fs194ym13790i68q8azscs4v9h8bxx";
   };
 
   buildInputs = [
-    zeroadData python27 pkgconfig spidermonkey_24 boost icu
+    zeroadData python27 pkgconfig spidermonkey_31 boost icu
     libxml2 libpng libjpeg zlib curl libogg libvorbis enet
     miniupnpc openal mesa xproto libX11 libXcursor nspr
     SDL gloox nvidia-texture-tools
@@ -41,6 +41,10 @@ stdenv.mkDerivation rec {
     "-I${libXcursor}/include/X11"
   ];
 
+  patchPhase = ''
+    sed -i 's/MOZJS_MINOR_VERSION/false \&\& MOZJS_MINOR_VERSION/' source/scriptinterface/ScriptTypes.h
+  '';
+
   configurePhase = ''
     # Delete shipped libraries which we don't need.
     rm -rf libraries/source/{enet,miniupnpc,nvtt,spidermonkey}
@@ -58,7 +62,7 @@ stdenv.mkDerivation rec {
       --with-system-nvtt \
       --with-system-enet \
       --with-system-miniupnpc \
-      --with-system-mozjs24 \
+      --with-system-mozjs31 \
       ${ if withEditor then "--atlas" else "" } \
       --collada \
       --bindir="$out"/bin \