nix-ros-overlay/distros/jazzy/clearpath-description/default.nix

25 lines
1,018 B
Nix

# 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";
version = "2.2.2-r1";
src = fetchurl {
url = "https://github.com/clearpath-gbp/clearpath_common-release/archive/release/jazzy/clearpath_description/2.2.2-1.tar.gz";
name = "2.2.2-1.tar.gz";
sha256 = "471e82da63bf4357fcf1b9adf69b9609674207bb7585cb423f9ded95f31956a7";
};
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 ];
};
}