2021-09-24 13:26:09 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 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-description";
|
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_description/2.2.3-1.tar.gz";
|
|
|
|
name = "2.2.3-1.tar.gz";
|
|
|
|
sha256 = "24ec3edb5cc1bfaae15f5c699e51ceb98809166699f17165f25c10dcc2844cec";
|
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 = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "This package contains the ROS description for complex chains of qbrobotics® devices.";
|
2022-03-30 16:33:59 -04:00
|
|
|
license = with lib.licenses; [ bsd3 ];
|
2021-09-24 13:26:09 +00:00
|
|
|
};
|
|
|
|
}
|