2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04: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 }:
|
2023-06-19 17:15:23 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-urdf-tutorial";
|
2023-10-06 13:48:50 +00:00
|
|
|
version = "1.1.0-r1";
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-10-06 13:48:50 +00:00
|
|
|
url = "https://github.com/ros2-gbp/urdf_tutorial-release/archive/release/iron/urdf_tutorial/1.1.0-1.tar.gz";
|
|
|
|
name = "1.1.0-1.tar.gz";
|
|
|
|
sha256 = "2eb0a1ec06bc05bc12c5a9a3793b0dbb114e4c77b14f91bbc1c5b04674967cf1";
|
2023-06-19 17:15:23 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-lint-auto ];
|
2023-10-06 13:48:50 +00:00
|
|
|
propagatedBuildInputs = [ urdf-launch ];
|
2023-06-19 17:15:23 -04: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" ];
|
2023-06-19 17:15:23 -04:00
|
|
|
};
|
|
|
|
}
|