1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/melodic/moveit-controller-manager-example/default.nix

24 lines
829 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, moveit-core, pluginlib, roscpp }:
buildRosPackage {
pname = "ros-melodic-moveit-controller-manager-example";
version = "1.0.8-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/moveit-release/archive/release/melodic/moveit_controller_manager_example/1.0.8-1.tar.gz";
name = "1.0.8-1.tar.gz";
sha256 = "7958ff6d3a19cac407e0011e6b1325b4e57a51d3dc31ad5802f4f2243008a652";
};
buildType = "catkin";
propagatedBuildInputs = [ moveit-core pluginlib roscpp ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''An example controller manager plugin for MoveIt. This is not functional code.'';
license = with lib.licenses; [ bsdOriginal ];
};
}