urdfdom-headers: 1.1.0 -> 1.1.1

Update the patch to the latest version from the PR to fix the conflicts.
This commit is contained in:
Ben Wolsieffer 2024-01-21 13:04:09 -05:00 committed by Guilhem Saurel
parent 4f6eb3c339
commit 70cc283378

View File

@ -2,20 +2,20 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "urdfdom-headers"; pname = "urdfdom-headers";
version = "1.1.0"; version = "1.1.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ros"; owner = "ros";
repo = "urdfdom_headers"; repo = "urdfdom_headers";
rev = version; rev = version;
hash = "sha256-ry5wDMRxR7TtupUghe9t1XP0XMvWKiOesO5RFHPrSdI="; hash = "sha256-FQSnYuTc40MOxyFsMPfoCIonP+4AUQxdq74eoQ9tOoo=";
}; };
patches = [ patches = [
# Fix CMake relative install dir assumptions (https://github.com/ros/urdfdom_headers/pull/66) # Fix CMake relative install dir assumptions (https://github.com/ros/urdfdom_headers/pull/66)
(fetchpatch { (fetchpatch {
url = "https://github.com/ros/urdfdom_headers/commit/c9c993147bbf18d5ec83bae684c5780281e529b4.patch"; url = "https://github.com/ros/urdfdom_headers/commit/6e0cea148c3a7123f8367cd48d5709a4490c32f1.patch";
hash = "sha256-BnYPdcetYSim2O1R38N0d1tY0Id++AgKNic8+dlM6Vg="; hash = "sha256-LC2TACGma/k6+WE9fTkzY98SgJYKsVuj5O9v84Q5mQ4=";
}) })
]; ];