1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/xpp-examples/default.nix

24 lines
779 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, xpp-quadrotor, xpp-hyq, rosbag, catkin, xpp-vis, roscpp }:
buildRosPackage {
pname = "ros-melodic-xpp-examples";
version = "1.0.10";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = https://github.com/leggedrobotics/xpp-release/archive/release/melodic/xpp_examples/1.0.10-0.tar.gz;
sha256 = "df300b82eb4135d5c0343d75f1c11dc6e3c03df09b07582ab3a4f753338522df";
2019-03-21 00:14:59 -04:00
};
buildInputs = [ xpp-quadrotor xpp-hyq rosbag roscpp xpp-vis ];
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ xpp-quadrotor xpp-hyq rosbag roscpp xpp-vis ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''Examples of how to use the xpp framework.'';
#license = lib.licenses.BSD;
};
}