2021-09-24 13:26:09 +00:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2021-09-24 13:26:09 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-qb-chain-control";
|
2021-11-26 18:29:10 +00:00
|
|
|
version = "2.2.3-r1";
|
2021-09-24 13:26:09 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-11-26 18:29:10 +00:00
|
|
|
url = "https://bitbucket.org/qbrobotics/qbchain-ros-release/get/release/noetic/qb_chain_control/2.2.3-1.tar.gz";
|
|
|
|
name = "2.2.3-1.tar.gz";
|
|
|
|
sha256 = "8775ed6b10a3e32d8c41b193d9c670d74ead9033f5c5eb515e3934c5ffe77ae3";
|
2021-09-24 13:26:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2021-09-24 13:26:09 +00:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package contains the ROS node to control multiple qbrobotics® devices simultaneously.'';
|
2022-03-30 16:33:59 -04:00
|
|
|
license = with lib.licenses; [ bsd3 ];
|
2021-09-24 13:26:09 +00:00
|
|
|
};
|
|
|
|
}
|