2023-07-07 13:21:03 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2023-07-07 13:21:03 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-10-04 13:25:33 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, clearpath-manipulators-description, clearpath-mounts-description, clearpath-platform-description, clearpath-sensors-description }:
|
2023-07-07 13:21:03 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-clearpath-description";
|
2025-01-24 13:19:18 +00:00
|
|
|
version = "1.1.1-r1";
|
2023-07-07 13:21:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-01-24 13:19:18 +00:00
|
|
|
url = "https://github.com/clearpath-gbp/clearpath_common-release/archive/release/humble/clearpath_description/1.1.1-1.tar.gz";
|
|
|
|
name = "1.1.1-1.tar.gz";
|
|
|
|
sha256 = "2f09ad8efbad1b2c1611766ca8349dbb76101b69a36492d10ec8691773a5132b";
|
2023-07-07 13:21:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
2024-10-04 13:25:33 +00:00
|
|
|
propagatedBuildInputs = [ clearpath-manipulators-description clearpath-mounts-description clearpath-platform-description clearpath-sensors-description ];
|
2023-07-07 13:21:03 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Clearpath URDF descriptions metapackage";
|
2023-07-07 13:21:03 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|