mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 10:14:50 +03:00
25 lines
880 B
Nix
25 lines
880 B
Nix
|
|
# Copyright 2025 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.16-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/moveit-release/archive/release/noetic/moveit_simple_controller_manager/1.1.16-1.tar.gz";
|
|
name = "1.1.16-1.tar.gz";
|
|
sha256 = "ede8a29274a3f2882eac590afa364e70f9c54b7f91197b08e35014ab4754e419";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ 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 ];
|
|
};
|
|
}
|