2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, boost, cmake, eigen, flann, ode, pkg-config }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-ompl";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "1.5.2-r4";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ompl-release/archive/release/rolling/ompl/1.5.2-4.tar.gz";
|
|
|
|
name = "1.5.2-4.tar.gz";
|
|
|
|
sha256 = "c6e2d7f1c827fd35871a17166431a1f268ca63dfd7d567ab1d30cd3b3c2e11bb";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
buildInputs = [ cmake pkg-config ];
|
|
|
|
propagatedBuildInputs = [ boost eigen flann ode ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "OMPL is a free sampling-based motion planning library.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|