1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/melodic/polar-scan-matcher/default.nix

27 lines
857 B
Nix
Raw Normal View History

# 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 = ''<p>
A wrapper around Polar Scan Matcher by Albert Diosi and Lindsay Kleeman, used for laser scan registration.
</p>'';
license = with lib.licenses; [ gpl1 ];
};
}