1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/kinetic/rviz-plugin-tutorials/default.nix
2019-12-09 23:36:28 -05:00

24 lines
759 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, qt5, rviz }:
buildRosPackage {
pname = "ros-kinetic-rviz-plugin-tutorials";
version = "0.10.3";
src = fetchurl {
url = "https://github.com/ros-gbp/visualization_tutorials-release/archive/release/kinetic/rviz_plugin_tutorials/0.10.3-0.tar.gz";
name = "0.10.3-0.tar.gz";
sha256 = "76998d671893d077f5fe8a074f9c8bcef142956e81a5902250509a4d061d598a";
};
buildType = "catkin";
propagatedBuildInputs = [ qt5.qtbase rviz ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Tutorials showing how to write plugins for RViz.'';
license = with lib.licenses; [ bsdOriginal ];
};
}