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/iron/turtlebot3-msgs/default.nix

27 lines
1 KiB
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, ament-lint-common, builtin-interfaces, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
buildRosPackage {
pname = "ros-iron-turtlebot3-msgs";
version = "2.2.1-r4";
src = fetchurl {
url = "https://github.com/ros2-gbp/turtlebot3_msgs-release/archive/release/iron/turtlebot3_msgs/2.2.1-4.tar.gz";
name = "2.2.1-4.tar.gz";
sha256 = "01c9e00b4197656533c7ff3916cd86e7f3fa05aaf320860006a4557a8ee7d369";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
checkInputs = [ ament-lint-common ];
propagatedBuildInputs = [ action-msgs builtin-interfaces rosidl-default-runtime std-msgs ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = "Message and service types: custom messages and services for TurtleBot3 packages for ROS2";
license = with lib.licenses; [ asl20 ];
};
}