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/melodic/transmission-interface/default.nix

25 lines
868 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, hardware-interface, pluginlib, cmake-modules, catkin, tinyxml, resource-retriever, roscpp, rosunit }:
buildRosPackage {
pname = "ros-melodic-transmission-interface";
version = "0.15.1";
src = fetchurl {
url = https://github.com/ros-gbp/ros_control-release/archive/release/melodic/transmission_interface/0.15.1-0.tar.gz;
sha256 = "6b28074919478b6422588385850f0450d788ad06829adca29ae5cf2cac798692";
};
buildInputs = [ hardware-interface cmake-modules pluginlib roscpp tinyxml ];
2019-03-21 00:14:59 -04:00
checkInputs = [ rosunit resource-retriever ];
propagatedBuildInputs = [ tinyxml roscpp pluginlib ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''Transmission Interface.'';
#license = lib.licenses.BSD;
};
}