1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-12 05:16:30 +03:00
nix-ros-overlay/distros/rolling/libpointmatcher/default.nix

26 lines
814 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, boost, cmake, eigen, libnabo }:
buildRosPackage {
pname = "ros-rolling-libpointmatcher";
version = "1.3.1-r4";
src = fetchurl {
url = "https://github.com/ros2-gbp/libpointmatcher-release/archive/release/rolling/libpointmatcher/1.3.1-4.tar.gz";
name = "1.3.1-4.tar.gz";
sha256 = "70e3664ade8660c4d26fbdb557a74c9c576836c159ad778a19c36bb0cda82b99";
};
buildType = "cmake";
buildInputs = [ cmake ];
propagatedBuildInputs = [ boost eigen libnabo ];
nativeBuildInputs = [ cmake ];
meta = {
description = ''libpointmatcher is a modular ICP library, useful for robotics and computer vision.'';
license = with lib.licenses; [ bsdOriginal ];
};
}