1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/jazzy/mola-input-rosbag2/default.nix

26 lines
951 B
Nix
Raw Permalink Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, cmake, cv-bridge, mola-kernel, mrpt-libobs, mrpt-libros-bridge, rosbag2-cpp, sensor-msgs, tf2-geometry-msgs, tf2-msgs, tf2-ros }:
buildRosPackage {
pname = "ros-jazzy-mola-input-rosbag2";
version = "1.7.0-r1";
src = fetchurl {
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";
};
buildType = "cmake";
buildInputs = [ cmake ];
propagatedBuildInputs = [ cv-bridge mola-kernel mrpt-libobs mrpt-libros-bridge rosbag2-cpp sensor-msgs tf2-geometry-msgs tf2-msgs tf2-ros ];
nativeBuildInputs = [ cmake ];
meta = {
description = "Offline RawDataSource from rosbag2 datasets";
license = with lib.licenses; [ gpl3Only ];
};
}