mujoco: 3.3.5 -> 3.3.6 (#444373)

This commit is contained in:
kirillrdy
2025-09-20 10:18:10 +00:00
committed by GitHub
3 changed files with 7 additions and 7 deletions
+4 -4
View File
@@ -18,8 +18,8 @@ let
abseil-cpp = fetchFromGitHub {
owner = "abseil";
repo = "abseil-cpp";
rev = "76bb24329e8bf5f39704eb10d21b9a80befa7c81";
hash = "sha256-eB7OqTO9Vwts9nYQ/Mdq0Ds4T1KgmmpYdzU09VPWOhk=";
rev = "987c57f325f7fa8472fa84e1f885f7534d391b0d";
hash = "sha256-6Ro7miql9+wcArsOKTjlyDSyD91rmmPsIfO5auk9kiI=";
};
benchmark = fetchFromGitHub {
owner = "google";
@@ -86,7 +86,7 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "mujoco";
version = "3.3.5";
version = "3.3.6";
# Bumping version? Make sure to look though the MuJoCo's commit
# history for bumped dependency pins!
@@ -94,7 +94,7 @@ stdenv.mkDerivation (finalAttrs: {
owner = "google-deepmind";
repo = "mujoco";
tag = finalAttrs.version;
hash = "sha256-HykExdosK5XpAOQeic/jsc6yYxjdoiaP8rRkA/yAfuU=";
hash = "sha256-6lZ36XFMsjzck/ouSSiX47+dxbEzXgrMhw1Mi3PEnq4=";
};
patches = [ ./mujoco-system-deps-dont-fetch.patch ];
@@ -29,14 +29,14 @@
buildPythonPackage rec {
pname = "dm-control";
version = "1.0.31";
version = "1.0.34";
pyproject = true;
src = fetchFromGitHub {
owner = "google-deepmind";
repo = "dm_control";
tag = version;
hash = "sha256-myrOrbKjBz+qN61WX54CqIaHsidUUBhgHezsdZvQFJA=";
hash = "sha256-AESUqrUw8EEUKNtZJ5M/dD7xDr+6VGi4yYacJw0q8Ls=";
};
build-system = [
@@ -38,7 +38,7 @@ buildPythonPackage rec {
# in the project's CI.
src = fetchPypi {
inherit pname version;
hash = "sha256-+fxlUPye2XaCI9stezzDK1oC656IcoK0DkUcJmrxakY=";
hash = "sha256-Emv7DbRC62QHd23E+Yx8AilUlHkx4Dw5XsRfpYRj+14=";
};
nativeBuildInputs = [ cmake ];