mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
949 B
Nix
24 lines
949 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, actionlib, catkin, controller-manager-msgs, moveit-core, moveit-simple-controller-manager, pluginlib, trajectory-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-moveit-ros-control-interface";
|
|
version = "1.0.8-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/moveit-release/archive/release/melodic/moveit_ros_control_interface/1.0.8-1.tar.gz";
|
|
name = "1.0.8-1.tar.gz";
|
|
sha256 = "b6a6980834a0f4b791affba61bef5085cd38a5147b095491c826510916f3c2e3";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ actionlib controller-manager-msgs moveit-core moveit-simple-controller-manager pluginlib trajectory-msgs ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''ros_control controller manager interface for MoveIt!'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|