2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, tf2, tf2-bullet, tf2-eigen, tf2-eigen-kdl, tf2-geometry-msgs, tf2-kdl, tf2-msgs, tf2-py, tf2-ros, tf2-sensor-msgs, tf2-tools }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-geometry2";
|
2025-01-24 13:19:18 +00:00
|
|
|
version = "0.36.8-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-01-24 13:19:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/jazzy/geometry2/0.36.8-1.tar.gz";
|
|
|
|
name = "0.36.8-1.tar.gz";
|
|
|
|
sha256 = "de4519131a42b9875904c4f08c311b8a2bf454aa581e8f4c15ef1cb19243625c";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
propagatedBuildInputs = [ tf2 tf2-bullet tf2-eigen tf2-eigen-kdl tf2-geometry-msgs tf2-kdl tf2-msgs tf2-py tf2-ros tf2-sensor-msgs tf2-tools ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A metapackage to bring in the default packages second generation Transform Library in ros, tf2.";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|