1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-28 01:15:34 +03:00
nix-ros-overlay/melodic/access-point-control/default.nix

27 lines
961 B
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, rospy, catkin, dynamic-reconfigure }:
buildRosPackage {
pname = "ros-melodic-access-point-control";
version = "1.0.13-r2";
src = fetchurl {
url = https://github.com/pr2-gbp/linux_networking-release/archive/release/melodic/access_point_control/1.0.13-2.tar.gz;
sha256 = "39437c7678dd643ca15a57d31c319e44d806e652a955b8f040cda6239366e000";
};
propagatedBuildInputs = [ rospy dynamic-reconfigure ];
nativeBuildInputs = [ rospy catkin dynamic-reconfigure ];
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;
};
}