mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
23 lines
660 B
Nix
23 lines
660 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin, wireless-msgs, rospy }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-wireless-watcher";
|
||
|
version = "0.0.7";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/clearpath-gbp/wireless-release/archive/release/kinetic/wireless_watcher/0.0.7-0.tar.gz;
|
||
|
sha256 = "76e7b991c9921a1e911c663ae2aee13644a238ffffc21f77e8f3983adca31de6";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ wireless-msgs rospy ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''The wireless_watcher package'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|