1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/noetic/moveit-simple-controller-manager/default.nix

24 lines
851 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, actionlib, catkin, control-msgs, moveit-core, pluginlib, roscpp }:
buildRosPackage {
pname = "ros-noetic-moveit-simple-controller-manager";
version = "1.1.6-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/moveit-release/archive/release/noetic/moveit_simple_controller_manager/1.1.6-1.tar.gz";
name = "1.1.6-1.tar.gz";
sha256 = "888d2692f2c2e6fed7968204646756824ae9016310ee8ffb34c663d488bc84dc";
};
buildType = "catkin";
propagatedBuildInputs = [ actionlib control-msgs moveit-core pluginlib roscpp ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''A generic, simple controller manager plugin for MoveIt.'';
license = with lib.licenses; [ bsdOriginal ];
};
}