mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
774 B
Nix
23 lines
774 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, arbotix-python, trajectory-msgs, tf, catkin }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-arbotix-controllers";
|
||
|
version = "0.10.0";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/vanadiumlabs/arbotix_ros-release/archive/release/melodic/arbotix_controllers/0.10.0-0.tar.gz;
|
||
|
sha256 = "32d41d26b0bddb10e801e02195bd604400fddb7aef4bddde8c917a62cecc6028";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ arbotix-python trajectory-msgs tf ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Extends the arbotix_python package with a number of more sophisticated ROS wrappers for common devices.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|