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