mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
28 lines
1 KiB
Nix
28 lines
1 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, xpp-states, xpp-quadrotor, xpp-msgs, xpp-hyq, catkin, xpp-vis, xpp-examples }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-xpp";
|
||
|
version = "1.0.9";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/leggedrobotics/xpp-release/archive/release/melodic/xpp/1.0.9-0.tar.gz;
|
||
|
sha256 = "0ae1750672383b8bb426d410df74906f5ba29c01edc81972c331b1a8e27b4061";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ xpp-states xpp-msgs xpp-quadrotor xpp-hyq xpp-examples xpp-vis ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Visualization of motion-plans for legged robots. It draws support areas,
|
||
|
contact forces and motion trajectories in RVIZ and displays URDFs for
|
||
|
specific robots, including a one-legged, a two-legged hopper and
|
||
|
<a href="http://dls.iit.it/">HyQ</a>.
|
||
|
Example motions were generated by
|
||
|
<a href="https://github.com/ethz-adrl/towr">towr</a>.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|