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

26 lines
903 B
Nix
Raw Normal View History

# 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-iron-mrpt-tutorials";
version = "2.1.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/mrpt_navigation-release/archive/release/iron/mrpt_tutorials/2.1.1-1.tar.gz";
name = "2.1.1-1.tar.gz";
sha256 = "3ff326b20f75dedb277dd25b19503b2258f6198f097a7ac2864570a6e817a38b";
};
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 ];
};
}