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/kinetic/turtlebot-dashboard/default.nix

23 lines
726 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, create-dashboard, catkin, kobuki-dashboard }:
buildRosPackage {
pname = "ros-kinetic-turtlebot-dashboard";
version = "2.3.1";
src = fetchurl {
url = https://github.com/turtlebot-release/turtlebot_interactions-release/archive/release/kinetic/turtlebot_dashboard/2.3.1-0.tar.gz;
sha256 = "e1adf8ce1d7f6a2dfb5a3f35006a460397281a5b26e267000bc7787677697434";
};
propagatedBuildInputs = [ create-dashboard kobuki-dashboard ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Launchers for the base-specific dashboards'';
#license = lib.licenses.BSD;
};
}