mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
762 B
Nix
24 lines
762 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, qt5, rviz }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-rviz-plugin-tutorials";
|
|
version = "0.10.5-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/visualization_tutorials-release/archive/release/melodic/rviz_plugin_tutorials/0.10.5-1.tar.gz";
|
|
name = "0.10.5-1.tar.gz";
|
|
sha256 = "56b0a158213319f1580c03cb98af5450debd18f7ed1d4888c0a4868d67ecdc3a";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ qt5.qtbase rviz ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Tutorials showing how to write plugins for RViz.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|