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-gui/default.nix

24 lines
874 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, cob-msgs, cob-script-server, pythonPackages, roslib, rospy }:
buildRosPackage {
pname = "ros-melodic-cob-command-gui";
version = "0.6.19-r1";
src = fetchurl {
url = "https://github.com/ipa320/cob_command_tools-release/archive/release/melodic/cob_command_gui/0.6.19-1.tar.gz";
name = "0.6.19-1.tar.gz";
sha256 = "1701a98d3b1a973455546a20f86ece15cb2ef964f1f8a98c49fea4675f1d69a5";
};
buildType = "catkin";
propagatedBuildInputs = [ cob-msgs cob-script-server pythonPackages.pygobject3 roslib rospy ];
nativeBuildInputs = [ catkin pythonPackages.setuptools ];
meta = {
description = ''This package provides a simple GUI for operating Care-O-bot.'';
license = with lib.licenses; [ asl20 ];
};
}