nix-ros-overlay/distros/humble/clearpath-platform-description/default.nix

25 lines
850 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, robot-state-publisher, urdf, xacro }:
buildRosPackage {
pname = "ros-humble-clearpath-platform-description";
version = "1.3.2-r1";
src = fetchurl {
url = "https://github.com/clearpath-gbp/clearpath_common-release/archive/release/humble/clearpath_platform_description/1.3.2-1.tar.gz";
name = "1.3.2-1.tar.gz";
sha256 = "1db5fc36cb643043198983e1d7a640bfe912c23f18ca44e5e680ad6e4adca64c";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ robot-state-publisher urdf xacro ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Clearpath Platform URDF descriptions";
license = with lib.licenses; [ bsdOriginal ];
};
}