1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/rocon-python-wifi/default.nix
2019-04-18 01:46:07 -04:00

24 lines
795 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# 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 {
url = https://github.com/yujinrobot-release/rocon_tools-release/archive/release/melodic/rocon_python_wifi/0.3.2-0.tar.gz;
sha256 = "a0fe115a173a08330e7680b085161aae0bde090b2749f58fbd5ee764fedc3765";
};
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.'';
#license = lib.licenses.GPLv2;
};
}