# Copyright 2019 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, sensor-msgs, catkin, roscpp, tf, geometry-msgs }: buildRosPackage { pname = "ros-kinetic-polar-scan-matcher"; version = "0.3.2"; src = fetchurl { url = https://github.com/ros-gbp/scan_tools-release/archive/release/kinetic/polar_scan_matcher/0.3.2-0.tar.gz; sha256 = "6867ba977e0f86416a88c4c1df098441f1e29f023496265f3caf5b40d33e16ef"; }; buildInputs = [ roscpp sensor-msgs tf geometry-msgs ]; propagatedBuildInputs = [ roscpp sensor-msgs tf geometry-msgs ]; nativeBuildInputs = [ catkin ]; meta = { description = ''

A wrapper around Polar Scan Matcher by Albert Diosi and Lindsay Kleeman, used for laser scan registration.

''; #license = lib.licenses.GPL; }; }