2025-01-24 13:19:18 +00:00
|
|
|
|
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, clearpath-manipulators-description, clearpath-mounts-description, clearpath-platform-description, clearpath-sensors-description }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-clearpath-description";
|
2025-02-14 13:45:14 +00:00
|
|
|
version = "2.1.0-r1";
|
2025-01-24 13:19:18 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-02-14 13:45:14 +00:00
|
|
|
url = "https://github.com/clearpath-gbp/clearpath_common-release/archive/release/jazzy/clearpath_description/2.1.0-1.tar.gz";
|
|
|
|
name = "2.1.0-1.tar.gz";
|
|
|
|
sha256 = "53e04aaef26ee580bf9575cefe8e31adb8d08d515a7db97ce95b3ca6d88102b5";
|
2025-01-24 13:19:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
propagatedBuildInputs = [ clearpath-manipulators-description clearpath-mounts-description clearpath-platform-description clearpath-sensors-description ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Clearpath URDF descriptions metapackage";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|