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

25 lines
735 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, 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";
};
buildInputs = [ boost ];
2019-03-21 00:14:59 -04:00
checkInputs = [ rosunit ];
propagatedBuildInputs = [ boost ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''Library implementing ODVA EtherNet/IP (Industrial Protocol).'';
#license = lib.licenses.BSD;
};
}