mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-17 13:08:38 +03:00
23 lines
706 B
Nix
23 lines
706 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin, dynamixel-controllers }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-dynamixel-tutorials";
|
||
|
version = "0.4.1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/arebgun/dynamixel_motor-release/archive/release/kinetic/dynamixel_tutorials/0.4.1-0.tar.gz;
|
||
|
sha256 = "d7b4c362532f2e315ad10d338ec2881476fbf33122e59e31c22eb521842e9afe";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ dynamixel-controllers ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Example configuration and launch file for dynamixel_motor stack.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|