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/humble/pose-cov-ops/default.nix

27 lines
1.3 KiB
Nix
Raw Permalink Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-cmake-gtest, ament-cmake-xmllint, ament-lint-auto, ament-lint-common, cmake, cv-bridge, geometry-msgs, gtest, mrpt-libposes, mrpt-libros-bridge, nav-msgs, rclcpp, ros-environment, sensor-msgs, std-msgs, stereo-msgs, tf2 }:
buildRosPackage {
pname = "ros-humble-pose-cov-ops";
version = "0.3.13-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/pose_cov_ops-release/archive/release/humble/pose_cov_ops/0.3.13-1.tar.gz";
name = "0.3.13-1.tar.gz";
sha256 = "7b03368cbeca013600bba276c28840f6f26554a8469a6367614a19145e639d86";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ament-cmake-gmock ament-cmake-gtest ament-cmake-xmllint cmake ros-environment ];
checkInputs = [ ament-lint-auto ament-lint-common gtest ];
propagatedBuildInputs = [ cv-bridge geometry-msgs mrpt-libposes mrpt-libros-bridge nav-msgs rclcpp sensor-msgs std-msgs stereo-msgs tf2 ];
nativeBuildInputs = [ ament-cmake ament-cmake-gmock ament-cmake-gtest cmake ];
meta = {
description = "C++ library for SE(2)/SE(3) pose composition operations with uncertainty";
license = with lib.licenses; [ bsdOriginal ];
};
}