mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
781 B
Nix
24 lines
781 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, console-bridge, catkin, rosunit, boost }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-odva-ethernetip";
|
|
version = "0.1.4";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros-drivers-gbp/odva_ethernetip-release/archive/release/kinetic/odva_ethernetip/0.1.4-0.tar.gz;
|
|
sha256 = "3989dd0c9fe6e06337d815385beb14ef3a0f97336855b186a052fe647161d51b";
|
|
};
|
|
|
|
buildInputs = [ console-bridge boost ];
|
|
checkInputs = [ rosunit ];
|
|
propagatedBuildInputs = [ console-bridge boost ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Library implementing ODVA EtherNet/IP (Industrial Protocol).'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|