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/mrpt-tutorials/default.nix

25 lines
960 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-lint-cmake, ament-cmake-xmllint, ament-lint-auto, cmake, mvsim, teleop-twist-keyboard }:
buildRosPackage {
pname = "ros-rolling-mrpt-tutorials";
version = "2.2.1-r1";
src = fetchurl {
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";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake cmake ];
propagatedBuildInputs = [ ament-cmake-lint-cmake ament-cmake-xmllint ament-lint-auto mvsim teleop-twist-keyboard ];
nativeBuildInputs = [ ament-cmake cmake ];
meta = {
description = "Example files used as tutorials for MRPT ROS packages";
license = with lib.licenses; [ bsdOriginal ];
};
}