mujoco: 3.0.0 -> 3.0.1

This commit is contained in:
Viktor Sonesten 2023-11-16 19:09:22 +01:00
parent 290bc1fbe0
commit dd6fa9c2e6
2 changed files with 4 additions and 4 deletions

View File

@ -129,13 +129,13 @@ let
in stdenv.mkDerivation rec {
pname = "mujoco";
version = "3.0.0";
version = "3.0.1";
src = fetchFromGitHub {
owner = "google-deepmind";
repo = pname;
rev = version;
hash = "sha256-zHK1uYtWkKFWBMqkw/NwuBlLoXyiZJeNC/sSXwSfgW4=";
hash = "sha256-UXE+7KDti8RarpoJoo9Ei3TgW/Qdnj3ASRo8uTWhGrU=";
};
patches = [ ./mujoco-system-deps-dont-fetch.patch ];

View File

@ -14,7 +14,7 @@
buildPythonPackage rec {
pname = "mujoco";
version = "3.0.0";
version = "3.0.1";
pyproject = true;
@ -24,7 +24,7 @@ buildPythonPackage rec {
# in the project's CI.
src = fetchPypi {
inherit pname version;
hash = "sha256-2ImKDfm9hCORaH7iou/Lp979VSCugCM/Gqnb/CkTeOw=";
hash = "sha256-pftecOk4q19qKBHs9hBBVenI+SgJg9VT7vc6NKuiY0s=";
};
nativeBuildInputs = [ cmake setuptools ];