nix-ros-overlay/melodic/arbotix-controllers/default.nix
2019-03-21 00:14:59 -04:00

22 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;
};
}