1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/kinetic/rviz-python-tutorial/default.nix

25 lines
766 B
Nix
Raw Normal View History

# Copyright 2020 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.5-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/visualization_tutorials-release/archive/release/kinetic/rviz_python_tutorial/0.10.5-1.tar.gz";
name = "0.10.5-1.tar.gz";
sha256 = "c7e0327dce6a304352a1a1b2f1327d7cf4c2602426ba6ae184f7d9897aebb936";
};
buildType = "catkin";
propagatedBuildInputs = [ rviz ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Tutorials showing how to call into rviz internals from python scripts.'';
license = with lib.licenses; [ bsdOriginal ];
};
}