1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 08:31:07 +03:00
nix-ros-overlay/distros/melodic/rviz-python-tutorial/default.nix

25 lines
766 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, rviz }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-rviz-python-tutorial";
version = "0.10.5-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/ros-gbp/visualization_tutorials-release/archive/release/melodic/rviz_python_tutorial/0.10.5-1.tar.gz";
name = "0.10.5-1.tar.gz";
sha256 = "e4cc2466079f2b9ead23a1584a2c2fc808b106d7aa49fcc3c2e0c3520aae2599";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ rviz ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''Tutorials showing how to call into rviz internals from python scripts.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}