2020-07-24 13:00:10 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-07-24 13:00:10 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-08-24 18:45:07 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, message-generation, message-runtime, nodelet, roscpp, roslint, rostest, std-msgs }:
|
2020-07-24 13:00:10 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-udp-com";
|
2021-07-23 13:01:27 +00:00
|
|
|
version = "1.1.2-r1";
|
2020-07-24 13:00:10 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-07-23 13:01:27 +00:00
|
|
|
url = "https://github.com/flynneva/udp_com-release/archive/release/melodic/udp_com/1.1.2-1.tar.gz";
|
|
|
|
name = "1.1.2-1.tar.gz";
|
|
|
|
sha256 = "2a27e17103618c78691b9d353174c16fb4565148e8be0825fc629dc55ebbb068";
|
2020-07-24 13:00:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2020-08-24 18:45:07 -04:00
|
|
|
checkInputs = [ roslint rostest ];
|
2020-07-24 13:00:10 +00:00
|
|
|
propagatedBuildInputs = [ message-generation message-runtime nodelet roscpp std-msgs ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2021-07-23 13:01:27 +00:00
|
|
|
description = ''Generic UDP communication ROS package'';
|
2020-07-24 13:00:10 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|