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/distros/melodic/librviz-tutorial/default.nix

25 lines
801 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2020 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, qt5, roscpp, rviz }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-librviz-tutorial";
version = "0.10.3";
src = fetchurl {
url = "https://github.com/ros-gbp/visualization_tutorials-release/archive/release/melodic/librviz_tutorial/0.10.3-0.tar.gz";
name = "0.10.3-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "65aad5382b304957a927f31695570cc9e8ff720bea22e8ca72bd049a80b54fa0";
};
buildType = "catkin";
propagatedBuildInputs = [ qt5.qtbase roscpp rviz ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''Tutorial showing how to compile your own C++ program with RViz displays and features.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}