mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-08 03:24:40 +03:00
26 lines
1 KiB
Nix
26 lines
1 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, sqlite3-vendor, pluginlib, ament-lint-common, rosbag2-test-common, ament-cmake-gmock, ament-cmake, ament-lint-auto, rosbag2-storage, rcutils }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-dashing-rosbag2-storage-default-plugins";
|
||
|
version = "0.1.4-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros2-gbp/rosbag2-release/archive/release/dashing/rosbag2_storage_default_plugins/0.1.4-1.tar.gz;
|
||
|
sha256 = "46b94ff3f3c088cb35714548f41a6b98512fe3d3474bf320541f61990c6afb03";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ sqlite3-vendor rosbag2-storage rcutils pluginlib ];
|
||
|
checkInputs = [ ament-lint-auto ament-cmake-gmock ament-lint-common rosbag2-test-common ];
|
||
|
propagatedBuildInputs = [ sqlite3-vendor rosbag2-storage rcutils pluginlib ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''ROSBag2 SQLite3 storage plugin'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|