2021-03-06 02:47:22 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2021-03-06 02:47:22 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, geometry-msgs, roscpp, sensor-msgs, tf }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-polar-scan-matcher";
|
2023-03-17 13:53:56 +00:00
|
|
|
version = "0.4.0-r1";
|
2021-03-06 02:47:22 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-03-17 13:53:56 +00:00
|
|
|
url = "https://github.com/ros-gbp/scan_tools-release/archive/release/noetic/polar_scan_matcher/0.4.0-1.tar.gz";
|
|
|
|
name = "0.4.0-1.tar.gz";
|
|
|
|
sha256 = "bcc36faf9baa266ac3f9d80713b08ec51539f589e6e26aa5e2e4ce1fd384702a";
|
2021-03-06 02:47:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2021-03-06 02:47:22 +00:00
|
|
|
propagatedBuildInputs = [ geometry-msgs roscpp sensor-msgs tf ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "<p>
|
2021-03-06 02:47:22 +00:00
|
|
|
A wrapper around Polar Scan Matcher by Albert Diosi and Lindsay Kleeman, used for laser scan registration.
|
2024-03-23 14:09:26 +00:00
|
|
|
</p>";
|
2022-03-28 21:23:37 -04:00
|
|
|
license = with lib.licenses; [ "GPL" ];
|
2021-03-06 02:47:22 +00:00
|
|
|
};
|
|
|
|
}
|