1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/rolling/rosbag2-compression/default.nix

27 lines
1 KiB
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-lint-auto, ament-lint-common, rclcpp, rcpputils, rcutils, rosbag2-cpp, rosbag2-storage, rosbag2-test-common, test-msgs }:
buildRosPackage {
pname = "ros-rolling-rosbag2-compression";
version = "0.29.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosbag2-release/archive/release/rolling/rosbag2_compression/0.29.0-1.tar.gz";
name = "0.29.0-1.tar.gz";
sha256 = "8d702ad79a5a396e847344d65c3cfb10f4d41cf852e142f831abe15eb3d6e006";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-gmock ament-lint-auto ament-lint-common rclcpp rosbag2-test-common test-msgs ];
propagatedBuildInputs = [ rcpputils rcutils rosbag2-cpp rosbag2-storage ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Compression implementations for rosbag2 bags and messages.";
license = with lib.licenses; [ asl20 ];
};
}