1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/dashing/rosbag2-tests/default.nix

27 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rosbag2, ament-cmake, ament-lint-common, rosbag2-converter-default-plugins, test-msgs, rosbag2-test-common, ament-cmake-gmock, ros2bag, rosbag2-storage-default-plugins, rclcpp, ament-index-cpp, std-msgs, ament-lint-auto, rosbag2-storage }:
buildRosPackage {
pname = "ros-dashing-rosbag2-tests";
version = "0.1.8-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosbag2-release/archive/release/dashing/rosbag2_tests/0.1.8-1.tar.gz";
name = "0.1.8-1.tar.gz";
sha256 = "5b142f6e75a216bf5f21a4b4498e4b28c7082e121d46d6b96fe4eaafe5e13f04";
};
buildType = "ament_cmake";
buildInputs = [ ament-index-cpp ];
checkInputs = [ rosbag2 ament-lint-common rosbag2-converter-default-plugins test-msgs rosbag2-test-common ament-cmake-gmock ros2bag rosbag2-storage-default-plugins rclcpp std-msgs ament-lint-auto rosbag2-storage ];
propagatedBuildInputs = [ ament-index-cpp ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Tests package for rosbag2'';
license = with lib.licenses; [ asl20 ];
};
}