2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-08-30 13:28:23 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, cmake, cv-bridge, mola-kernel, mrpt-libobs, mrpt-libros-bridge, rosbag2-cpp, sensor-msgs, tf2-geometry-msgs, tf2-msgs, tf2-ros }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-mola-input-rosbag2";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "1.7.0-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros2-gbp/mola-release/archive/release/jazzy/mola_input_rosbag2/1.7.0-1.tar.gz";
|
|
|
|
name = "1.7.0-1.tar.gz";
|
|
|
|
sha256 = "f2ec6500b05606eb31cabcd204cd13336753717da8ed8ef92a67d25cc820f9d5";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
buildInputs = [ cmake ];
|
2024-08-30 13:28:23 +00:00
|
|
|
propagatedBuildInputs = [ cv-bridge mola-kernel mrpt-libobs mrpt-libros-bridge rosbag2-cpp sensor-msgs tf2-geometry-msgs tf2-msgs tf2-ros ];
|
2024-05-24 14:00:52 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Offline RawDataSource from rosbag2 datasets";
|
|
|
|
license = with lib.licenses; [ gpl3Only ];
|
|
|
|
};
|
|
|
|
}
|