1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-19 05:48:38 +03:00
nix-ros-overlay/kinetic/controller-interface/default.nix
2019-04-06 20:59:50 -04:00

23 lines
765 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, hardware-interface, catkin, pluginlib, roscpp }:
buildRosPackage {
pname = "ros-kinetic-controller-interface";
version = "0.13.3";
src = fetchurl {
url = https://github.com/ros-gbp/ros_control-release/archive/release/kinetic/controller_interface/0.13.3-0.tar.gz;
sha256 = "5db8ab2db8d3bdfbaa79743ec62a1932d3763d016812652cc145b674cb58ea8c";
};
buildInputs = [ hardware-interface roscpp pluginlib ];
propagatedBuildInputs = [ hardware-interface roscpp pluginlib ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Interface base class for controllers'';
#license = lib.licenses.BSD;
};
}