nix-ros-overlay/kinetic/ethercat-trigger-controllers/default.nix
2019-04-06 20:59:50 -04:00

25 lines
1.1 KiB
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, pluginlib, pr2-controller-interface, realtime-tools, catkin, libtool, message-generation, message-runtime, rospy, std-msgs, diagnostic-msgs, roscpp }:
buildRosPackage {
pname = "ros-kinetic-ethercat-trigger-controllers";
version = "1.10.14";
src = fetchurl {
url = https://github.com/pr2-gbp/pr2_controllers-release/archive/release/kinetic/ethercat_trigger_controllers/1.10.14-0.tar.gz;
sha256 = "175a1a89e8b7a4d9e17d32b173fa19621baa077d21c46eacff1eec060ac69b6f";
};
buildInputs = [ message-generation pluginlib pr2-controller-interface std-msgs realtime-tools roscpp libtool diagnostic-msgs ];
propagatedBuildInputs = [ pluginlib pr2-controller-interface realtime-tools libtool message-runtime rospy std-msgs diagnostic-msgs roscpp ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Controllers to operate the digital output of the motor controller
boards and the projector board. This package has not been reviewed and
should be considered unstable.'';
#license = lib.licenses.BSD;
};
}