mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-16 20:48:40 +03:00
23 lines
695 B
Nix
23 lines
695 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin, rviz }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-rviz-python-tutorial";
|
||
|
version = "0.10.3";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/visualization_tutorials-release/archive/release/kinetic/rviz_python_tutorial/0.10.3-0.tar.gz;
|
||
|
sha256 = "30bab9adabf6c5f06ce36eae6cbd2941fbda56fd51675330ced07110d9dee064";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ rviz ];
|
||
|
nativeBuildInputs = [ catkin rviz ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Tutorials showing how to call into rviz internals from python scripts.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|