1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/kinetic/hardware-interface/default.nix
2019-04-06 20:59:50 -04:00

24 lines
721 B
Nix

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