mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
25 lines
898 B
Nix
25 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.4-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/IntelligentRoboticsLabs/ros2_planning_system-release/archive/release/eloquent/plansys2_msgs/0.0.4-1.tar.gz";
|
||
|
name = "0.0.4-1.tar.gz";
|
||
|
sha256 = "74b2ff0de7eb314c8925e4e8c27116825f5583faf2309cb9daf93ba73f406355";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|