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/distros/melodic/access-point-control/default.nix

29 lines
1,008 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, dynamic-reconfigure, rospy }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-access-point-control";
version = "1.0.16-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/pr2-gbp/linux_networking-release/archive/release/melodic/access_point_control/1.0.16-1.tar.gz";
name = "1.0.16-1.tar.gz";
sha256 = "17dff1b9389eb82ad17d285128dd8039c26ecf8d914810ada5dd86ec99d25a42";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
propagatedBuildInputs = [ dynamic-reconfigure rospy ];
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 = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}