1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 00:20:36 +03:00
nix-ros-overlay/melodic/interactive-marker-tutorials/default.nix
2019-12-09 23:36:28 -05:00

24 lines
840 B
Nix

# Copyright 2019 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-melodic-interactive-marker-tutorials";
version = "0.10.3";
src = fetchurl {
url = "https://github.com/ros-gbp/visualization_tutorials-release/archive/release/melodic/interactive_marker_tutorials/0.10.3-0.tar.gz";
name = "0.10.3-0.tar.gz";
sha256 = "9871ffc4468273f1bd8f38a84e6dafa224057f8ebd89db86e0ab174ab46c06eb";
};
buildType = "catkin";
propagatedBuildInputs = [ interactive-markers roscpp tf visualization-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The interactive_marker_tutorials package'';
license = with lib.licenses; [ bsdOriginal ];
};
}