2019-04-26 08:49:29 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-04-26 08:49:29 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, boost, catkin, diagnostic-updater, odva-ethernetip, rosconsole-bridge, roscpp, roslaunch, rosunit, sensor-msgs }:
|
2019-04-26 08:49:29 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-omron-os32c-driver";
|
2020-03-27 12:53:57 +00:00
|
|
|
version = "1.1.0";
|
2019-04-26 08:49:29 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-27 12:53:57 +00:00
|
|
|
url = "https://github.com/ros-drivers-gbp/omron-release/archive/release/melodic/omron_os32c_driver/1.1.0-0.tar.gz";
|
|
|
|
name = "1.1.0-0.tar.gz";
|
|
|
|
sha256 = "0df734134fffa43ce8c66f761be34584663afe3595c08e5275fc9c538f8825c4";
|
2019-04-26 08:49:29 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-04-26 08:49:29 -04:00
|
|
|
checkInputs = [ roslaunch rosunit ];
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ boost diagnostic-updater odva-ethernetip rosconsole-bridge roscpp sensor-msgs ];
|
2019-04-26 08:49:29 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Interface driver for Omron OS32C Lidar via Ethernet/IP (Industrial Protocol)'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-04-26 08:49:29 -04:00
|
|
|
};
|
|
|
|
}
|