1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/kinetic/pr2-mechanism-model/default.nix
2019-04-06 20:59:50 -04:00

35 lines
1.6 KiB
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, hardware-interface, kdl-parser, pluginlib, pr2-hardware-interface, cmake-modules, catkin, urdfdom, rostest, urdf, angles, roscpp, rosunit }:
buildRosPackage {
pname = "ros-kinetic-pr2-mechanism-model";
version = "1.8.17";
src = fetchurl {
url = https://github.com/pr2-gbp/pr2_mechanism-release/archive/release/kinetic/pr2_mechanism_model/1.8.17-0.tar.gz;
sha256 = "41c5eee47237de565b014a15d1fe68d1ea8bd49f5cf41b038e03823c55642283";
};
buildInputs = [ hardware-interface kdl-parser cmake-modules pluginlib pr2-hardware-interface urdfdom rostest urdf angles roscpp rosunit ];
propagatedBuildInputs = [ hardware-interface kdl-parser pluginlib urdf angles pr2-hardware-interface roscpp urdfdom ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''<p>
This package contains the robot model that is used by the realtime
controllers
inside <a href="http://www.ros.org/wiki/pr2_controller_manager">controller
manager</a>. This robot model focuses on controlling the robot
mechanism in a realtime control loop, and therefore it only contains
the components of a robot that are relevant in realtime: the robot
joints (with encoders, transmisisons and actuators) and the
kinematic/dynamic model of the robot.
</p>
<p>
The pr2_mechanism_model package is well tested and is released with a stable API.
</p>'';
#license = lib.licenses.BSD;
};
}