mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-19 00:20:36 +03:00
24 lines
777 B
Nix
24 lines
777 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin, pythonPackages }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-rocon-python-wifi";
|
||
|
version = "0.3.2-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/yujinrobot-release/rocon_tools-release/archive/release/kinetic/rocon_python_wifi/0.3.2-1.tar.gz;
|
||
|
sha256 = "2ec60de42401432db69b67247a38ae52eff9fc7a3814ee6e00eb26c66cc797d6";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ pythonPackages.catkin-pkg catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''The pythonwifi package is available through pypi, but not through a
|
||
|
deb package. This is copy of the package suitable for use through the
|
||
|
ROS ecosystem.'';
|
||
|
#license = lib.licenses.GPLv2;
|
||
|
};
|
||
|
}
|