1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +03:00
nix-ros-overlay/distros/melodic/ethercat-trigger-controllers/default.nix

27 lines
1.1 KiB
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, diagnostic-msgs, libtool, message-generation, message-runtime, pluginlib, pr2-controller-interface, realtime-tools, roscpp, rospy, std-msgs }:
buildRosPackage {
pname = "ros-melodic-ethercat-trigger-controllers";
version = "1.10.17-r1";
src = fetchurl {
url = "https://github.com/pr2-gbp/pr2_controllers-release/archive/release/melodic/ethercat_trigger_controllers/1.10.17-1.tar.gz";
name = "1.10.17-1.tar.gz";
sha256 = "d3630e54d263a3f14802f4b62710e4da4f21e78b6415d70fbd3b6a0b16b0ca5c";
};
buildType = "catkin";
buildInputs = [ message-generation ];
propagatedBuildInputs = [ diagnostic-msgs libtool message-runtime pluginlib pr2-controller-interface realtime-tools roscpp rospy std-msgs ];
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 = with lib.licenses; [ bsdOriginal ];
};
}