Gaetan Lepage 2024-06-05 08:38:40 +02:00
parent 66d6a3c294
commit 1dcda38ec7

View File

@ -129,7 +129,7 @@ let
in stdenv.mkDerivation rec {
pname = "mujoco";
version = "3.1.5";
version = "3.1.6";
# Bumping version? Make sure to look though the MuJoCo's commit
# history for bumped dependency pins!
@ -137,7 +137,7 @@ in stdenv.mkDerivation rec {
owner = "google-deepmind";
repo = "mujoco";
rev = "refs/tags/${version}";
hash = "sha256-XKN489oexHf2/Gv0MVxXUzqyeJJTJXV99+fNi8shdsg=";
hash = "sha256-64zUplr1E5WSb5RpTW9La1zKVT67a1VrftiUqc2SHlU=";
};
patches = [ ./mujoco-system-deps-dont-fetch.patch ];
@ -177,12 +177,12 @@ in stdenv.mkDerivation rec {
passthru.pin = { inherit (pin) lodepng eigen3 abseil-cpp; };
meta = with lib; {
meta = {
description = "Multi-Joint dynamics with Contact. A general purpose physics simulator.";
homepage = "https://mujoco.org/";
changelog = "https://github.com/google-deepmind/mujoco/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ samuela tmplt ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ samuela tmplt ];
broken = stdenv.isDarwin;
};
}