1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-12 05:16:30 +03:00
nix-ros-overlay/melodic/robot-controllers-msgs/default.nix
2019-04-06 22:15:06 -04:00

23 lines
832 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, actionlib-msgs, catkin, message-generation, message-runtime, std-msgs }:
buildRosPackage {
pname = "ros-melodic-robot-controllers-msgs";
version = "0.6.0";
src = fetchurl {
url = https://github.com/fetchrobotics-gbp/robot_controllers-release/archive/release/melodic/robot_controllers_msgs/0.6.0-0.tar.gz;
sha256 = "e4e27516f3adeed4b5e046e2660975a999082fd1d0322b5c1f5ca0c9c2f0759b";
};
buildInputs = [ std-msgs message-generation actionlib-msgs ];
propagatedBuildInputs = [ std-msgs message-runtime actionlib-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Messages for use with robot_controllers framework.'';
#license = lib.licenses.BSD;
};
}