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/rolling/kitti-metrics-eval/default.nix

26 lines
868 B
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, cmake, mola-common, mrpt-libmath, mrpt-libposes, mrpt-libtclap }:
buildRosPackage {
pname = "ros-rolling-kitti-metrics-eval";
version = "1.6.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/mola-release/archive/release/rolling/kitti_metrics_eval/1.6.2-1.tar.gz";
name = "1.6.2-1.tar.gz";
sha256 = "de8238ab71b7a70380fc9c9a7ddf0738ee19e204851838d5b7477138ea80d614";
};
buildType = "cmake";
buildInputs = [ cmake ];
propagatedBuildInputs = [ mola-common mrpt-libmath mrpt-libposes mrpt-libtclap ];
nativeBuildInputs = [ cmake ];
meta = {
description = "CLI tool to evaluate the KITTI odometry bechmark metrics to trajectory files";
license = with lib.licenses; [ bsdOriginal ];
};
}