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

25 lines
829 B
Nix
Raw Normal View History

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