2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-10-06 13:48:50 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, urdf-launch }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-urdf-tutorial";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "1.1.0-r2";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/urdf_tutorial-release/archive/release/rolling/urdf_tutorial/1.1.0-2.tar.gz";
|
|
|
|
name = "1.1.0-2.tar.gz";
|
|
|
|
sha256 = "b066b654b1f015dacc08a37a123754d6d47e7833a95ecdff3659bfb36b6fbcfd";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-lint-auto ];
|
2023-10-06 13:48:50 +00:00
|
|
|
propagatedBuildInputs = [ urdf-launch ];
|
2022-12-09 19:20:15 -05:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "This package contains a number of URDF tutorials.";
|
2023-10-06 13:48:50 +00:00
|
|
|
license = with lib.licenses; [ "BSD-3-clause" ];
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
}
|