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/jazzy/mola-input-rosbag2/default.nix

26 lines
900 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, cmake, cv-bridge, mola-kernel, mrpt2, rosbag2-cpp, sensor-msgs, tf2-geometry-msgs, tf2-msgs, tf2-ros }:
buildRosPackage {
pname = "ros-jazzy-mola-input-rosbag2";
version = "1.0.8-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/mola-release/archive/release/jazzy/mola_input_rosbag2/1.0.8-1.tar.gz";
name = "1.0.8-1.tar.gz";
sha256 = "2883829d191c9f70870414ba7d69ee45dfe231e3362a593e8b1f443a0efe107d";
};
buildType = "cmake";
buildInputs = [ cmake ];
propagatedBuildInputs = [ cv-bridge mola-kernel mrpt2 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 ];
};
}