1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/dashing/tf2-geometry-msgs/default.nix

26 lines
844 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-cmake-gtest, geometry-msgs, orocos-kdl, tf2, tf2-ros }:
buildRosPackage {
pname = "ros-dashing-tf2-geometry-msgs";
version = "0.11.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/dashing/tf2_geometry_msgs/0.11.5-1.tar.gz";
name = "0.11.5-1.tar.gz";
sha256 = "d763ba306fe1a0e8905650f25242f5fb102e49a8404be6ba6a12c8fb08c307e5";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-gtest ];
propagatedBuildInputs = [ geometry-msgs orocos-kdl tf2 tf2-ros ];
nativeBuildInputs = [ ament-cmake-auto ];
meta = {
description = ''tf2_geometry_msgs'';
license = with lib.licenses; [ bsdOriginal ];
};
}