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

26 lines
845 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rviz, catkin, roscpp, qt5 }:
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";
buildInputs = [ rviz roscpp qt5.qtbase ];
propagatedBuildInputs = [ rviz roscpp qt5.qtbase ];
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
};
}