2019-04-18 01:46:07 -04:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-04-18 01:46:07 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, pythonPackages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-rocon-python-wifi";
|
|
|
|
version = "0.3.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/yujinrobot-release/rocon_tools-release/archive/release/melodic/rocon_python_wifi/0.3.2-0.tar.gz";
|
|
|
|
name = "0.3.2-0.tar.gz";
|
2019-04-18 01:46:07 -04:00
|
|
|
sha256 = "a0fe115a173a08330e7680b085161aae0bde090b2749f58fbd5ee764fedc3765";
|
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-04-18 01:46:07 -04:00
|
|
|
buildInputs = [ pythonPackages.catkin-pkg ];
|
|
|
|
nativeBuildInputs = [ 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.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ gpl2 ];
|
2019-04-18 01:46:07 -04:00
|
|
|
};
|
|
|
|
}
|