mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
24 lines
898 B
Nix
24 lines
898 B
Nix
|
|
# 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.5-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/IntelligentRoboticsLabs/ros2_planning_system-release/archive/release/eloquent/plansys2_msgs/0.0.5-1.tar.gz";
|
|
name = "0.0.5-1.tar.gz";
|
|
sha256 = "1e1610d45e229376dbe42bf2288bdad7fc8eed31685a29e35fdaaf5b33bdb3f2";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|