summary refs log tree commit diff
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2021-11-28 18:02:36 +0100
committerLluís Batlle i Rossell <viric@viric.name>2021-11-28 18:02:36 +0100
commit873042271ad597dd77c95d380f75f05f6185249e (patch)
tree1fdd8097e1557f3739060ad80e6e9050c0ba980e
parent5f914776f4387e366834d6486f9101cac464526f (diff)
downloadnixpkgs-873042271ad597dd77c95d380f75f05f6185249e.tar
nixpkgs-873042271ad597dd77c95d380f75f05f6185249e.tar.gz
nixpkgs-873042271ad597dd77c95d380f75f05f6185249e.tar.bz2
nixpkgs-873042271ad597dd77c95d380f75f05f6185249e.tar.lz
nixpkgs-873042271ad597dd77c95d380f75f05f6185249e.tar.xz
nixpkgs-873042271ad597dd77c95d380f75f05f6185249e.tar.zst
nixpkgs-873042271ad597dd77c95d380f75f05f6185249e.zip
frogatto: 2021-05-24 -> 2021-11-23
And fix build
-rw-r--r--pkgs/games/frogatto/engine.nix11
1 files changed, 3 insertions, 8 deletions
diff --git a/pkgs/games/frogatto/engine.nix b/pkgs/games/frogatto/engine.nix
index 22aab537c21..9e8ee6fe8dd 100644
--- a/pkgs/games/frogatto/engine.nix
+++ b/pkgs/games/frogatto/engine.nix
@@ -4,21 +4,16 @@
 
 stdenv.mkDerivation {
   pname = "anura-engine";
-  version = "unstable-2021-05-24";
+  version = "unstable-2021-11-23";
 
   src = fetchFromGitHub {
     owner = "anura-engine";
     repo = "anura";
-    rev = "ed50bbfa68a4aa09438d95d39103ec39156d438f";
-    sha256 = "0bk0qklk9wwx3jr2kbrmansccn1nj962v5n2vlb5hxsrcv96s3dg";
+    rev = "816425df31624066e2815e26a25b1c5d3d355cb4";
+    sha256 = "1k7fnfgz003gcbyygv4aakhkkz3w3z9nyz7dlwz01xa6122zqyir";
     fetchSubmodules = true;
   };
 
-  postPatch = ''
-    substituteInPlace src/sys.cpp \
-      --replace mallinfo2 mallinfo
-  '';
-
   nativeBuildInputs = [
     which pkg-config
   ];