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, access-point-control, catkin, ieee80211-channels, rospy, dynamic-reconfigure }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-hostapd-access-point";
|
2019-04-26 08:49:29 -04:00
|
|
|
version = "1.0.13-r2";
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-26 08:49:29 -04:00
|
|
|
url = https://github.com/pr2-gbp/linux_networking-release/archive/release/melodic/hostapd_access_point/1.0.13-2.tar.gz;
|
|
|
|
sha256 = "bea0177adb3f798682f1b3a981dbf8c76443c5b0588d067fef6ee2cd3adffb61";
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
buildInputs = [ rospy ieee80211-channels access-point-control dynamic-reconfigure ];
|
2019-03-21 00:14:59 -04:00
|
|
|
propagatedBuildInputs = [ rospy ieee80211-channels access-point-control dynamic-reconfigure ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A ROS node that controls a hostapd-based access
|
|
|
|
point. It is mainly intended for use with a wireless
|
|
|
|
network adapter running in master mode. It implements
|
|
|
|
the dynamic_reconfigure interface defined
|
|
|
|
in the [[access_point_control]] package.'';
|
|
|
|
#license = lib.licenses.BSD;
|
|
|
|
};
|
|
|
|
}
|