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/foxy/geometry2/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

25 lines
1,002 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# 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";
version = "0.13.14-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/foxy/geometry2/0.13.14-1.tar.gz";
name = "0.13.14-1.tar.gz";
sha256 = "f7270cd95653e1bf0479083efec919851a219a0d674baed06f7c817a07e950f3";
};
buildType = "ament_cmake";
buildInputs = [ 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 ];
};
}