1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/kinetic/access-point-control/default.nix

28 lines
979 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, dynamic-reconfigure, catkin, rospy }:
buildRosPackage {
pname = "ros-kinetic-access-point-control";
version = "1.0.15";
src = fetchurl {
url = https://github.com/pr2-gbp/linux_networking-release/archive/release/kinetic/access_point_control/1.0.15-0.tar.gz;
sha256 = "8373f805c0200dcd6b516082f486463211cafe0494573e578fe6c4c03121849e";
};
buildInputs = [ rospy dynamic-reconfigure ];
propagatedBuildInputs = [ rospy dynamic-reconfigure ];
nativeBuildInputs = [ catkin ];
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;
};
}