about summary refs log tree commit diff
path: root/pkgs/by-name/re
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-04-17 17:28:50 +0200
committerGitHub <noreply@github.com>2024-04-17 17:28:50 +0200
commit5c73d72b6e7bb3d7d2f8de15e502166c44e88614 (patch)
tree9ce40d3bd3b38b64fe75a6b1590964f2091134ad /pkgs/by-name/re
parentbad6d5d22e7c6502d147f19b20bbbf759c5ee558 (diff)
parentd8f70bf6156f85db515052ac46241ee545a451d2 (diff)
Merge pull request #294743 from rexxDigital/reactphysics3d
reactphysics3d: 0.9.0 -> 0.10.0
Diffstat (limited to 'pkgs/by-name/re')
-rw-r--r--pkgs/by-name/re/reactphysics3d/package.nix14
1 files changed, 2 insertions, 12 deletions
diff --git a/pkgs/by-name/re/reactphysics3d/package.nix b/pkgs/by-name/re/reactphysics3d/package.nix
index 4e69b9b41cb96..2245eeee4214d 100644
--- a/pkgs/by-name/re/reactphysics3d/package.nix
+++ b/pkgs/by-name/re/reactphysics3d/package.nix
@@ -2,25 +2,15 @@
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "reactphysics3d";
-  version = "0.9.0";
+  version = "0.10.0";
 
   src = fetchFromGitHub {
     owner = "DanielChappuis";
     repo = "reactphysics3d";
     rev = "v${finalAttrs.version}";
-    hash = "sha256-AUdsUXsygsGfS8H+AHEV1fSrrX7zGmfsaTONYUG3zqk=";
+    hash = "sha256-LWBnrqDFhpzN/XUEGniZeViDq3R1MtmuU5CMCQ59VOY=";
   };
 
-  patches = [
-    # Fix gcc-13 build failure:
-    #   https://github.com/DanielChappuis/reactphysics3d/pull/371
-    (fetchpatch {
-      name ="gcc-13.patch";
-      url = "https://github.com/DanielChappuis/reactphysics3d/commit/9335856664fdc3bd1073209f0b4f6eae24c35848.patch";
-      hash = "sha256-pCiAHfv66tbE8+hpVvjS22jLi7I+pPofSy8w7eWEp9o=";
-    })
-  ];
-
   nativeBuildInputs = [ cmake ];
 
   meta = with lib; {