1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-11 21:06:23 +03:00
nix-ros-overlay/distros/humble/robot-controllers-msgs/default.nix

25 lines
923 B
Nix
Raw Normal View History

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, builtin-interfaces, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-humble-robot-controllers-msgs";
version = "0.9.2-r1";
src = fetchurl {
url = "https://github.com/fetchrobotics-gbp/robot_controllers-ros2-release/archive/release/humble/robot_controllers_msgs/0.9.2-1.tar.gz";
name = "0.9.2-1.tar.gz";
sha256 = "f23761f861321bb3f6789c6b817b58182eb8fa0c0915339c374339f8e37b50a0";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ builtin-interfaces rosidl-default-generators rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = ''Messages for use with robot_controllers framework.'';
license = with lib.licenses; [ bsdOriginal ];
};
}