mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-18 16:10:23 +03:00
23 lines
896 B
Nix
23 lines
896 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, control-msgs, sensor-msgs, catkin, pythonPackages, nav-msgs, actionlib, rospy, diagnostic-msgs, tf, arbotix-msgs, geometry-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-arbotix-python";
|
||
|
version = "0.10.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/vanadiumlabs/arbotix_ros-release/archive/release/kinetic/arbotix_python/0.10.0-1.tar.gz;
|
||
|
sha256 = "663f71496a238a66a7d81542975f8c434b19ba0c472815b8db63404d5226f5b6";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ pythonPackages.pyserial control-msgs sensor-msgs nav-msgs actionlib rospy diagnostic-msgs tf arbotix-msgs geometry-msgs ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Bindings and low-level controllers for ArbotiX-powered robots.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|