1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/melodic/cob-command-tools/default.nix

25 lines
970 B
Nix
Raw Normal View History

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, cob-command-gui, cob-dashboard, cob-helper-tools, cob-interactive-teleop, cob-monitoring, cob-script-server, cob-teleop }:
buildRosPackage {
pname = "ros-melodic-cob-command-tools";
version = "0.6.19-r1";
src = fetchurl {
url = "https://github.com/ipa320/cob_command_tools-release/archive/release/melodic/cob_command_tools/0.6.19-1.tar.gz";
name = "0.6.19-1.tar.gz";
sha256 = "37e4b6b0e085c9446c8a929ae6bbbd33fcb63d63b6b89506a1b48083021f2962";
};
buildType = "catkin";
propagatedBuildInputs = [ cob-command-gui cob-dashboard cob-helper-tools cob-interactive-teleop cob-monitoring cob-script-server cob-teleop ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The cob_command_tools stack provides tools, for operating Care-O-bot.'';
license = with lib.licenses; [ asl20 ];
};
}