2024-03-22 13:05:17 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-03-22 13:05:17 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-08-30 13:28:23 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, cmake, mola-common, mrpt-libmath, mrpt-libposes, mrpt-libtclap }:
|
2024-03-22 13:05:17 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-kitti-metrics-eval";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "1.7.0-r1";
|
2024-03-22 13:05:17 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros2-gbp/mola-release/archive/release/humble/kitti_metrics_eval/1.7.0-1.tar.gz";
|
|
|
|
name = "1.7.0-1.tar.gz";
|
|
|
|
sha256 = "430a0044326c0ba97e7b08bb445d076bd376a61de3a7e7ee4a42f215888b9dc5";
|
2024-03-22 13:05:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
buildInputs = [ cmake ];
|
2024-08-30 13:28:23 +00:00
|
|
|
propagatedBuildInputs = [ mola-common mrpt-libmath mrpt-libposes mrpt-libtclap ];
|
2024-03-22 13:05:17 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "CLI tool to evaluate the KITTI odometry bechmark metrics to trajectory files";
|
2024-03-22 13:05:17 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|