mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
Basic working melodic with gazebo.
This commit is contained in:
parent
13c58f0706
commit
096c49e618
1135 changed files with 28374 additions and 0 deletions
22
melodic/librviz-tutorial/default.nix
Normal file
22
melodic/librviz-tutorial/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
|
||||
# Copyright 2019 Open Source Robotics Foundation
|
||||
# Distributed under the terms of the BSD license
|
||||
|
||||
{ lib, buildRosPackage, fetchurl, catkin, rviz, qt5, roscpp }:
|
||||
buildRosPackage {
|
||||
pname = "ros-melodic-librviz-tutorial";
|
||||
version = "0.10.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = https://github.com/ros-gbp/visualization_tutorials-release/archive/release/melodic/librviz_tutorial/0.10.3-0.tar.gz;
|
||||
sha256 = "65aad5382b304957a927f31695570cc9e8ff720bea22e8ca72bd049a80b54fa0";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ roscpp rviz qt5.qtbase ];
|
||||
nativeBuildInputs = [ catkin roscpp rviz qt5.qtbase ];
|
||||
|
||||
meta = {
|
||||
description = ''Tutorial showing how to compile your own C++ program with RViz displays and features.'';
|
||||
#license = lib.licenses.BSD;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue