mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-23 23:39:54 +03:00
Basic working melodic with gazebo.
This commit is contained in:
parent
13c58f0706
commit
096c49e618
1135 changed files with 28374 additions and 0 deletions
22
melodic/robot-controllers-interface/default.nix
Normal file
22
melodic/robot-controllers-interface/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
|
||||
# Copyright 2019 Open Source Robotics Foundation
|
||||
# Distributed under the terms of the BSD license
|
||||
|
||||
{ lib, buildRosPackage, fetchurl, pluginlib, robot-controllers-msgs, catkin, actionlib, roscpp }:
|
||||
buildRosPackage {
|
||||
pname = "ros-melodic-robot-controllers-interface";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = https://github.com/fetchrobotics-gbp/robot_controllers-release/archive/release/melodic/robot_controllers_interface/0.6.0-0.tar.gz;
|
||||
sha256 = "e32be3bf72bffa92847724a0d2ca5fa70a636b9a80b836a28d6ccf244888c8a3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ robot-controllers-msgs roscpp pluginlib actionlib ];
|
||||
nativeBuildInputs = [ pluginlib actionlib robot-controllers-msgs catkin roscpp ];
|
||||
|
||||
meta = {
|
||||
description = ''Generic framework for robot controls.'';
|
||||
#license = lib.licenses.BSD;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue