1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/kinetic/interactive-marker-tutorials/default.nix

25 lines
840 B
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, interactive-markers, roscpp, tf, visualization-msgs }:
buildRosPackage {
pname = "ros-kinetic-interactive-marker-tutorials";
version = "0.10.3";
src = fetchurl {
url = "https://github.com/ros-gbp/visualization_tutorials-release/archive/release/kinetic/interactive_marker_tutorials/0.10.3-0.tar.gz";
name = "0.10.3-0.tar.gz";
sha256 = "538c214100b3c57362642b43903a64528777f92d038462d88dc6ca297afde123";
};
buildType = "catkin";
propagatedBuildInputs = [ interactive-markers roscpp tf visualization-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The interactive_marker_tutorials package'';
license = with lib.licenses; [ bsdOriginal ];
};
}