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/distros/foxy/rosbag2-storage-default-plugins/default.nix

26 lines
1,014 B
Nix
Raw Normal View History

# Copyright 2020 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, pluginlib, rcpputils, rcutils, rosbag2-storage, rosbag2-test-common, sqlite3-vendor }:
buildRosPackage {
pname = "ros-foxy-rosbag2-storage-default-plugins";
version = "0.3.4-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosbag2-release/archive/release/foxy/rosbag2_storage_default_plugins/0.3.4-1.tar.gz";
name = "0.3.4-1.tar.gz";
sha256 = "931781741d372c4340642574a776c9b391bdfc5d39ee24e9fab78a29411c5262";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-gmock ament-lint-auto ament-lint-common rosbag2-test-common ];
propagatedBuildInputs = [ pluginlib rcpputils rcutils rosbag2-storage sqlite3-vendor ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''ROSBag2 SQLite3 storage plugin'';
license = with lib.licenses; [ asl20 ];
};
}