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/humble/urdf-parser-plugin/default.nix
2022-06-11 13:21:09 -04:00

25 lines
861 B
Nix

# Copyright 2022 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-humble-urdf-parser-plugin";
version = "2.6.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/urdf-release/archive/release/humble/urdf_parser_plugin/2.6.0-2.tar.gz";
name = "2.6.0-2.tar.gz";
sha256 = "e02835634341dfbfc9221ec0bd9aadebca530b12d810f3de1e98eecf0989d0ab";
};
buildType = "ament_cmake";
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 ];
};
}