2020-06-12 18:02:43 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-06-12 18:02:43 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, tf2, tf2-bullet, tf2-eigen, tf2-geometry-msgs, tf2-kdl, tf2-msgs, tf2-py, tf2-ros, tf2-sensor-msgs, tf2-tools }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-geometry2";
|
2021-04-19 01:10:27 +00:00
|
|
|
version = "0.13.10-r1";
|
2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-04-19 01:10:27 +00:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/foxy/geometry2/0.13.10-1.tar.gz";
|
|
|
|
name = "0.13.10-1.tar.gz";
|
|
|
|
sha256 = "e25dab04c5f0b7e0205e66765fae470d5f0c4317e87f2ada01b29ee38617a4d1";
|
2020-06-12 18:02:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
propagatedBuildInputs = [ tf2 tf2-bullet tf2-eigen 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 ];
|
|
|
|
};
|
|
|
|
}
|