mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-17 04:58:40 +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/rviz-python-tutorial/default.nix
Normal file
22
melodic/rviz-python-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 }:
|
||||
buildRosPackage {
|
||||
pname = "ros-melodic-rviz-python-tutorial";
|
||||
version = "0.10.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = https://github.com/ros-gbp/visualization_tutorials-release/archive/release/melodic/rviz_python_tutorial/0.10.3-0.tar.gz;
|
||||
sha256 = "525f02f83695fda430a40dbb0d980db92744f6782726cc14c1ee731215f6137f";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ rviz ];
|
||||
nativeBuildInputs = [ catkin rviz ];
|
||||
|
||||
meta = {
|
||||
description = ''Tutorials showing how to call into rviz internals from python scripts.'';
|
||||
#license = lib.licenses.BSD;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue