Gaetan Lepage
2026-04-14 20:40:24 +00:00
parent 91a301bdeb
commit 9495a3eff1
2 changed files with 6 additions and 4 deletions
+5 -3
View File
@@ -82,7 +82,7 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "mujoco";
version = "3.6.0";
version = "3.7.0";
# Bumping version? Make sure to look though the MuJoCo's commit
# history for bumped dependency pins!
@@ -90,10 +90,12 @@ stdenv.mkDerivation (finalAttrs: {
owner = "google-deepmind";
repo = "mujoco";
tag = finalAttrs.version;
hash = "sha256-Gxr8AH9grTjrMTHHOVseLuTC3rNuQEZRWhSvR4HgIc4=";
hash = "sha256-Ti5Pdr25fck5IdgumiuLIcrI403XawbTePMJY1Fg6/A=";
};
patches = [ ./mujoco-system-deps-dont-fetch.patch ];
patches = [
./mujoco-system-deps-dont-fetch.patch
];
nativeBuildInputs = [
cmake
@@ -38,7 +38,7 @@ buildPythonPackage (finalAttrs: {
# in the project's CI.
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-FcifQj4zvOCGCtcGF2O3IyNCbWNI17Lkbr3MN7EeCQU=";
hash = "sha256-0yXFRIcCqRnbWz0AUP/wr4bUfaFG1ZZ4cishEve1UIQ=";
};
nativeBuildInputs = [ cmake ];