1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-16 23:21:00 +03:00
nix-ros-overlay/distros/melodic/hardware-interface/default.nix

25 lines
727 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2020 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, boost, catkin, roscpp }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-hardware-interface";
version = "0.16.0-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/ros-gbp/ros_control-release/archive/release/melodic/hardware_interface/0.16.0-1.tar.gz";
name = "0.16.0-1.tar.gz";
sha256 = "ad57d9e12500a21d1f4d3d9a63ab59c194de366b227d052e095cc50eb4fa190e";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
propagatedBuildInputs = [ boost roscpp ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''Hardware Interface base class.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}