mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
835 B
Nix
24 lines
835 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, hardware-interface, catkin, urdfdom, rostest, urdf, roscpp, rosunit }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-joint-limits-interface";
|
|
version = "0.13.3";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros-gbp/ros_control-release/archive/release/kinetic/joint_limits_interface/0.13.3-0.tar.gz;
|
|
sha256 = "278edecef58248e58f6d90bd35d943199460d213869b77178dd5d0a8685367df";
|
|
};
|
|
|
|
buildInputs = [ hardware-interface roscpp urdf urdfdom ];
|
|
checkInputs = [ rostest rosunit ];
|
|
propagatedBuildInputs = [ hardware-interface roscpp urdf urdfdom ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Interface for enforcing joint limits.'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|