2022-07-22 14:48:09 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-07-22 14:48:09 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-qb-device-description";
|
2023-07-28 13:37:31 +00:00
|
|
|
version = "3.1.0-r1";
|
2022-07-22 14:48:09 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-07-28 13:37:31 +00:00
|
|
|
url = "https://bitbucket.org/qbrobotics/qbdevice-ros-release/get/release/noetic/qb_device_description/3.1.0-1.tar.gz";
|
|
|
|
name = "3.1.0-1.tar.gz";
|
|
|
|
sha256 = "27ba479c6697320bf4305cab1ebcb266801b814e333c897581b057835b2444f2";
|
2022-07-22 14:48:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2022-07-22 14:48:09 +00:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "This package contains a device-independent description utilities for qbrobotics® devices.";
|
2022-07-22 14:48:09 +00:00
|
|
|
license = with lib.licenses; [ bsd3 ];
|
|
|
|
};
|
|
|
|
}
|