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

25 lines
941 B
Nix

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