Skip to content

Commit

Permalink
humble: vrpn: add patch to fix CMake compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
lopsided98 committed Nov 5, 2024
1 parent 653f6e8 commit 3875f53
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions distros/humble/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -176,4 +176,16 @@ in with lib; {
})
];
});

vrpn = rosSuper.vrpn.overrideAttrs ({
patches ? [], ...
}: {
patches = patches ++ [
# Fix compatibility with recent CMake versions
(self.fetchpatch {
url = "https://github.com/vrpn/vrpn/commit/04d86b71de06cb6cb8d2cb7276fef27275d083d2.patch";
hash = "sha256-AEiTLXPYcFdZrE4KzvCkXH4GiSFmhCl14wkq+0MRWLo=";
})
];
});
}

0 comments on commit 3875f53

Please sign in to comment.