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 2024 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.4.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/mola-release/archive/release/rolling/kitti_metrics_eval/1.4.1-1.tar.gz";
name = "1.4.1-1.tar.gz";
sha256 = "4b2feca6e8d6dda4c04f4684d80d61773b466d9ddd87bf9b6cf69122fff21247";
};
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 ];
};
}