Unverified Commit 1ba325b6 authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

mujoco: 3.6.0 -> 3.7.0 (#510088)

parents 729e5df3 cfda0440
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -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
+2 −2
Original line number Diff line number Diff line
@@ -29,14 +29,14 @@

buildPythonPackage (finalAttrs: {
  pname = "dm-control";
  version = "1.0.38";
  version = "1.0.39";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "google-deepmind";
    repo = "dm_control";
    tag = finalAttrs.version;
    hash = "sha256-3Bo4XOR3iEf9H0RgMq/62CyKHua9nPU8gpYgze1GMno=";
    hash = "sha256-N5/zFIJIj0T0TxATeExbcSuAy/kNotY5odSiJuehZ7Y=";
  };

  build-system = [
+1 −1
Original line number Diff line number Diff line
@@ -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 ];