nix-ros-overlay/distros/foxy/pose-cov-ops/default.nix

26 lines
1 KiB
Nix

# Copyright 2022 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, geometry-msgs, gtest, mrpt2, ros-environment }:
buildRosPackage {
pname = "ros-foxy-pose-cov-ops";
version = "0.3.6-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/pose_cov_ops-release/archive/release/foxy/pose_cov_ops/0.3.6-1.tar.gz";
name = "0.3.6-1.tar.gz";
sha256 = "e80d740474f638f97e0114004df1a00ebfd0d169e13058e99c91f72d8402c17e";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-xmllint ros-environment ];
checkInputs = [ ament-lint-auto ament-lint-common gtest ];
propagatedBuildInputs = [ geometry-msgs mrpt2 ];
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 ];
};
}