mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
874 B
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 ];
|
|
};
|
|
}
|