2022-06-09 18:50:37 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, builtin-interfaces, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-actionlib-msgs";
|
2024-05-24 14:00:52 +00:00
|
|
|
version = "4.2.4-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-05-24 14:00:52 +00:00
|
|
|
url = "https://github.com/ros2-gbp/common_interfaces-release/archive/release/humble/actionlib_msgs/4.2.4-1.tar.gz";
|
|
|
|
name = "4.2.4-1.tar.gz";
|
|
|
|
sha256 = "cd77e252feadb04e8bac724025c759e6be370d354d25aa150dad6c9db34eb962";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake rosidl-default-generators ];
|
2022-06-09 18:50:37 -04:00
|
|
|
checkInputs = [ ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ builtin-interfaces rosidl-default-runtime std-msgs ];
|
|
|
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "A package containing some message definitions used in the implementation of ROS 1 actions.";
|
2022-06-09 18:50:37 -04:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|