mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
726 B
Nix
23 lines
726 B
Nix
![]() |
|
||
|
# 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;
|
||
|
};
|
||
|
}
|