1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/eloquent/plansys2-msgs/default.nix

25 lines
898 B
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, builtin-interfaces, rclcpp, rosidl-default-generators, std-msgs }:
buildRosPackage {
pname = "ros-eloquent-plansys2-msgs";
version = "0.0.6-r1";
src = fetchurl {
url = "https://github.com/IntelligentRoboticsLabs/ros2_planning_system-release/archive/release/eloquent/plansys2_msgs/0.0.6-1.tar.gz";
name = "0.0.6-1.tar.gz";
sha256 = "0f06dd5d3d77018f63460725abf8174db68545c6f811d8faf1c61c52b7802770";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ action-msgs builtin-interfaces rclcpp rosidl-default-generators std-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Messages and service files for the ROS2 Planning System'';
license = with lib.licenses; [ asl20 ];
};
}