mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
804 B
Nix
24 lines
804 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, qt5, roscpp, rviz }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-librviz-tutorial";
|
|
version = "0.10.5-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/visualization_tutorials-release/archive/release/melodic/librviz_tutorial/0.10.5-1.tar.gz";
|
|
name = "0.10.5-1.tar.gz";
|
|
sha256 = "32b250c099ffd4d8cad4656087bb99f96cdbf61d6e54c6b3b67b92b636d7519e";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ qt5.qtbase roscpp rviz ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Tutorial showing how to compile your own C++ program with RViz displays and features.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|