mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-20 14:18:39 +03:00
23 lines
752 B
Nix
23 lines
752 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin, roscpp, visualization-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-visualization-marker-tutorials";
|
||
|
version = "0.10.3";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/visualization_tutorials-release/archive/release/melodic/visualization_marker_tutorials/0.10.3-0.tar.gz;
|
||
|
sha256 = "2e5bc745ab400757dee1666b765a9aef01a4d9b5f062d837827aee336bdbb68d";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ visualization-msgs roscpp ];
|
||
|
nativeBuildInputs = [ catkin visualization-msgs roscpp ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''The visulalization_marker_tutorials package'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|