2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-06-19 17:15:23 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, builtin-interfaces, geometry-msgs, ros-gz-interfaces, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-ros-ign-interfaces";
|
2023-06-19 17:15:23 -04:00
|
|
|
version = "0.245.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-06-19 17:15:23 -04:00
|
|
|
url = "https://github.com/ros2-gbp/ros_ign-release/archive/release/rolling/ros_ign_interfaces/0.245.0-1.tar.gz";
|
|
|
|
name = "0.245.0-1.tar.gz";
|
|
|
|
sha256 = "1bc71599a4fba45946242b52fe39580ec674ccf8b481056a516647217b7d28d7";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake rosidl-default-generators ];
|
|
|
|
checkInputs = [ ament-lint-common ];
|
2023-06-19 17:15:23 -04:00
|
|
|
propagatedBuildInputs = [ builtin-interfaces geometry-msgs ros-gz-interfaces rosidl-default-runtime std-msgs ];
|
2022-12-09 19:20:15 -05:00
|
|
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
|
|
|
|
|
|
|
meta = {
|
2023-06-19 17:15:23 -04:00
|
|
|
description = ''Shim package to redirect to ros_gz_interfaces.'';
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|