1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/rolling/urdf-parser-plugin/default.nix

26 lines
901 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ament-lint-auto, ament-lint-common, urdfdom-headers }:
buildRosPackage {
pname = "ros-rolling-urdf-parser-plugin";
version = "2.12.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/urdf-release/archive/release/rolling/urdf_parser_plugin/2.12.2-1.tar.gz";
name = "2.12.2-1.tar.gz";
sha256 = "0b7148798e2376d6fa5d5b7ca883fe299daef14b55c1f28a75224a1097c5c31a";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-ros ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ urdfdom-headers ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = "This package contains a C++ base class for URDF parsers.";
license = with lib.licenses; [ bsdOriginal ];
};
}