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/hostapd-access-point/default.nix

28 lines
1.1 KiB
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, access-point-control, catkin, ieee80211-channels, rospy, dynamic-reconfigure }:
buildRosPackage {
pname = "ros-melodic-hostapd-access-point";
version = "1.0.13-r2";
2019-03-21 00:14:59 -04:00
src = fetchurl {
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
};
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 ];
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;
};
}