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, catkin, rosunit, boost }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-odva-ethernetip";
|
|
|
|
version = "0.1.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = https://github.com/ros-drivers-gbp/odva_ethernetip-release/archive/release/melodic/odva_ethernetip/0.1.3-0.tar.gz;
|
|
|
|
sha256 = "41362528d6a0cbefa2cd8120373ecbb2a30182fda78ea9c49341c78874130c24";
|
|
|
|
};
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
buildInputs = [ boost ];
|
2019-03-21 00:14:59 -04:00
|
|
|
checkInputs = [ rosunit ];
|
|
|
|
propagatedBuildInputs = [ boost ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Library implementing ODVA EtherNet/IP (Industrial Protocol).'';
|
|
|
|
#license = lib.licenses.BSD;
|
|
|
|
};
|
|
|
|
}
|