1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00

gazebo_11: add patch to fix installation paths

This commit is contained in:
Ben Wolsieffer 2021-11-27 00:20:40 -05:00
parent 0811495d8c
commit a237432ff5

View file

@ -31,6 +31,12 @@ mkDerivation rec {
lib.optional (lib.versionOlder version "11.3.0") (fetchpatch {
url = "https://github.com/osrf/gazebo/commit/25d3381c083a9eeafcee34ef648339a83e192676.patch";
sha256 = "1qixrz2jiqdc37mgcsnv562m7mzr6w0rd67fmkr5710n6dnky4y7";
}) ++
# Fix CMake relative install path assumptions
# https://github.com/osrf/gazebo/pull/3138
lib.optional (lib.versionAtLeast version "11.8.0") (fetchpatch {
url = "https://github.com/osrf/gazebo/commit/9bf5dac1546f3982d9da783a6ac5d7e674ddbe24.patch";
sha256 = "0h9fmch8rgnsi3gnxvwfp0g9jgzy0z9p7nah005qw9lzmkvdrvs7";
});
enableParallelBuilding = true;