1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 13:40:32 +03:00
nix-ros-overlay/distros/humble/mrpt-tutorials/default.nix

25 lines
907 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, cmake, mvsim, teleop-twist-keyboard }:
buildRosPackage {
pname = "ros-humble-mrpt-tutorials";
version = "2.1.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/mrpt_navigation-release/archive/release/humble/mrpt_tutorials/2.1.1-1.tar.gz";
name = "2.1.1-1.tar.gz";
sha256 = "1de3c60b2460d6f6ebae3c8ff57567507d892785a32ec41a06b9ddc110109426";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake cmake ];
propagatedBuildInputs = [ ament-lint-auto ament-lint-common mvsim teleop-twist-keyboard ];
nativeBuildInputs = [ ament-cmake cmake ];
meta = {
description = "Example files used as tutorials for MRPT ROS packages";
license = with lib.licenses; [ bsdOriginal ];
};
}