summary refs log tree commit diff
diff options
context:
space:
mode:
authorAstro <astro@spaceboyz.net>2022-04-14 01:41:30 +0200
committerAstro <astro@spaceboyz.net>2022-04-14 01:42:17 +0200
commitd7bd0d2fd7a84fc565be4d25fc026d5d801d84c8 (patch)
tree842dad72240802046d99ffeb9e857e55cd4d9d57
parent98f670e96663229fd0edd3f08a006edf00ecbbe1 (diff)
downloadnixpkgs-d7bd0d2fd7a84fc565be4d25fc026d5d801d84c8.tar
nixpkgs-d7bd0d2fd7a84fc565be4d25fc026d5d801d84c8.tar.gz
nixpkgs-d7bd0d2fd7a84fc565be4d25fc026d5d801d84c8.tar.bz2
nixpkgs-d7bd0d2fd7a84fc565be4d25fc026d5d801d84c8.tar.lz
nixpkgs-d7bd0d2fd7a84fc565be4d25fc026d5d801d84c8.tar.xz
nixpkgs-d7bd0d2fd7a84fc565be4d25fc026d5d801d84c8.tar.zst
nixpkgs-d7bd0d2fd7a84fc565be4d25fc026d5d801d84c8.zip
frogatto: unstable-2021-05-24 -> unstable-2022-04-13
-rw-r--r--pkgs/games/frogatto/data.nix7
-rw-r--r--pkgs/games/frogatto/engine.nix15
2 files changed, 14 insertions, 8 deletions
diff --git a/pkgs/games/frogatto/data.nix b/pkgs/games/frogatto/data.nix
index 3ca955a09c3..00e43582f6e 100644
--- a/pkgs/games/frogatto/data.nix
+++ b/pkgs/games/frogatto/data.nix
@@ -2,14 +2,13 @@
 
 stdenv.mkDerivation {
   pname = "frogatto-data";
-  version = "unstable-2021-05-24";
+  version = "unstable-2022-04-13";
 
   src = fetchFromGitHub {
     owner = "frogatto";
     repo = "frogatto";
-    # master branch as of 2021-11-29
-    rev = "82d3dafa0cfeaad016a427bdbc729eb9509748f1";
-    sha256 = "0fmwn584xl0vafcsh72b4xnryfqyjxk5zhmymg5i8rzp6h03n8xq";
+    rev = "655493961c4ad57ba9cccdc24d23a2ded294b5f2";
+    sha256 = "0irn7p61cs8nm7dxsx84b2c3wryf2h12k2kclywdhy6xmh53w8k1";
   };
 
   installPhase = ''
diff --git a/pkgs/games/frogatto/engine.nix b/pkgs/games/frogatto/engine.nix
index 9e8ee6fe8dd..b848c414b7a 100644
--- a/pkgs/games/frogatto/engine.nix
+++ b/pkgs/games/frogatto/engine.nix
@@ -1,18 +1,25 @@
-{ lib, stdenv, fetchFromGitHub, which
+{ lib, stdenv, fetchFromGitHub, fetchurl, which
 , boost, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf
 , glew, zlib, icu, pkg-config, cairo, libvpx }:
 
 stdenv.mkDerivation {
   pname = "anura-engine";
-  version = "unstable-2021-11-23";
+  version = "unstable-2022-04-09";
 
   src = fetchFromGitHub {
     owner = "anura-engine";
     repo = "anura";
-    rev = "816425df31624066e2815e26a25b1c5d3d355cb4";
-    sha256 = "1k7fnfgz003gcbyygv4aakhkkz3w3z9nyz7dlwz01xa6122zqyir";
+    rev = "5ac7f6fe63114274f0da7dad4c1ed673651e6424";
+    sha256 = "1yrcbvzgxdvn893qk1qcpb53pjns366fdls5qjal7lhq71kkfc67";
     fetchSubmodules = true;
   };
+  patches = [
+    # https://github.com/anura-engine/anura/issues/321
+    (fetchurl {
+      url = "https://github.com/anura-engine/anura/commit/627d08fb5254b5c66d315f1706089905c2704059.patch";
+      sha256 = "052m58qb3lg0hnxacpnjz2sz89dk0x6b5qi2q9bkzkvg38f237rr";
+    })
+  ];
 
   nativeBuildInputs = [
     which pkg-config