about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorGaetan Lepage <gaetan@glepage.com>2024-06-05 08:38:40 +0200
committerGaetan Lepage <gaetan@glepage.com>2024-06-07 08:21:18 +0200
commit1dcda38ec7aa24de2cc6b2ebe3c43b03a4616cf9 (patch)
treea5f5597f24ed845cf3751cfd4ac4586d79a9b145 /pkgs/applications/science
parent66d6a3c29481cab55d7afbba031b71e7b4fc387b (diff)
downloadnixlib-1dcda38ec7aa24de2cc6b2ebe3c43b03a4616cf9.tar
nixlib-1dcda38ec7aa24de2cc6b2ebe3c43b03a4616cf9.tar.gz
nixlib-1dcda38ec7aa24de2cc6b2ebe3c43b03a4616cf9.tar.bz2
nixlib-1dcda38ec7aa24de2cc6b2ebe3c43b03a4616cf9.tar.lz
nixlib-1dcda38ec7aa24de2cc6b2ebe3c43b03a4616cf9.tar.xz
nixlib-1dcda38ec7aa24de2cc6b2ebe3c43b03a4616cf9.tar.zst
nixlib-1dcda38ec7aa24de2cc6b2ebe3c43b03a4616cf9.zip
mujoco: 3.1.5 -> 3.1.6
Diff:
https://github.com/google-deepmind/mujoco/compare/refs/tags/3.1.5...3.1.6

Changelog:
https://mujoco.readthedocs.io/en/latest/changelog.html#version-3-1-6-jun-3-2024
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/robotics/mujoco/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/science/robotics/mujoco/default.nix b/pkgs/applications/science/robotics/mujoco/default.nix
index 76c18a788c30..b05089175d53 100644
--- a/pkgs/applications/science/robotics/mujoco/default.nix
+++ b/pkgs/applications/science/robotics/mujoco/default.nix
@@ -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;
   };
 }