2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, dynamic-reconfigure, catkin, rospy }:
|
2019-03-21 00:14:59 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-access-point-control";
|
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/access_point_control/1.0.13-2.tar.gz;
|
|
|
|
sha256 = "39437c7678dd643ca15a57d31c319e44d806e652a955b8f040cda6239366e000";
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
buildInputs = [ rospy dynamic-reconfigure ];
|
2019-03-21 00:14:59 -04:00
|
|
|
propagatedBuildInputs = [ rospy dynamic-reconfigure ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Defines an API for access point control based on
|
|
|
|
dynamic_reconfigure. Other packages must
|
|
|
|
implement the API for various access-point models:
|
|
|
|
for example: hostapd_access_point for hostapd-based control or
|
|
|
|
linksys_access_point for Linksys router web interface.'';
|
|
|
|
#license = lib.licenses.BSD;
|
|
|
|
};
|
|
|
|
}
|