# Copyright 2021 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, catkin, geometry-msgs, roscpp, sensor-msgs, tf }: buildRosPackage { pname = "ros-melodic-polar-scan-matcher"; version = "0.3.3-r2"; src = fetchurl { url = "https://github.com/ros-gbp/scan_tools-release/archive/release/melodic/polar_scan_matcher/0.3.3-2.tar.gz"; name = "0.3.3-2.tar.gz"; sha256 = "20762e0309884c1cfc3cc2370939cbb4493238a13ba62af0c6a6748c9ee4d19a"; }; buildType = "catkin"; propagatedBuildInputs = [ geometry-msgs roscpp sensor-msgs tf ]; nativeBuildInputs = [ catkin ]; meta = { description = ''
A wrapper around Polar Scan Matcher by Albert Diosi and Lindsay Kleeman, used for laser scan registration.
''; license = with lib.licenses; [ gpl1 ]; }; }