Commit 9495a3ef authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files
parent 91a301bd
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
+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 ];