2024-07-26 13:34:25 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-07-26 13:34:25 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-10-04 13:25:33 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-lint-cmake, ament-cmake-xmllint, ament-lint-auto, cmake, mvsim, teleop-twist-keyboard }:
|
2024-07-26 13:34:25 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-mrpt-tutorials";
|
2024-11-08 14:09:31 +00:00
|
|
|
version = "2.2.1-r1";
|
2024-07-26 13:34:25 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-08 14:09:31 +00:00
|
|
|
url = "https://github.com/ros2-gbp/mrpt_navigation-release/archive/release/rolling/mrpt_tutorials/2.2.1-1.tar.gz";
|
|
|
|
name = "2.2.1-1.tar.gz";
|
|
|
|
sha256 = "ea51a39da0af309ffdbe0b46488ef66b70b8fa33ac3f71704736da1a598dddb1";
|
2024-07-26 13:34:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake cmake ];
|
2024-10-04 13:25:33 +00:00
|
|
|
propagatedBuildInputs = [ ament-cmake-lint-cmake ament-cmake-xmllint ament-lint-auto mvsim teleop-twist-keyboard ];
|
2024-07-26 13:34:25 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Example files used as tutorials for MRPT ROS packages";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|