1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/odva-ethernetip/default.nix

27 lines
853 B
Nix
Raw Normal View History

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