2020-05-23 15:15:06 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-05-23 15:15:06 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, roscpp, visualization-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-visualization-marker-tutorials";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "0.11.2-r1";
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros-gbp/visualization_tutorials-release/archive/release/noetic/visualization_marker_tutorials/0.11.2-1.tar.gz";
|
|
|
|
name = "0.11.2-1.tar.gz";
|
|
|
|
sha256 = "bc1f28f6fe9fba6e1763390b72f1a5ae41ddf5c70c6b464662e22e1012e21c29";
|
2020-05-23 15:15:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2020-05-23 15:15:06 -04:00
|
|
|
propagatedBuildInputs = [ roscpp visualization-msgs ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "The visulalization_marker_tutorials package";
|
2020-05-23 15:15:06 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|