2020-10-23 13:30:31 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-10-23 13:30:31 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, rospy, wireless-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-wireless-watcher";
|
|
|
|
version = "0.1.1-r2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/clearpath-gbp/wireless-release/archive/release/noetic/wireless_watcher/0.1.1-2.tar.gz";
|
|
|
|
name = "0.1.1-2.tar.gz";
|
|
|
|
sha256 = "c3a1b64ac33660df0fd8becf86c5207e081d8c3c4c74ae7185b6568663cd8117";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2020-10-23 13:30:31 +00:00
|
|
|
propagatedBuildInputs = [ rospy wireless-msgs ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "A Python-based which publishes connection information about a linux wireless interface.";
|
2020-10-23 13:30:31 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|