2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-07-28 13:37:31 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-vendor-package, sqlite }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-sqlite3-vendor";
|
2024-09-13 14:15:34 +00:00
|
|
|
version = "0.29.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-09-13 14:15:34 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rosbag2-release/archive/release/rolling/sqlite3_vendor/0.29.0-1.tar.gz";
|
|
|
|
name = "0.29.0-1.tar.gz";
|
|
|
|
sha256 = "c0dce7569172d30f7d523c123bdd3c7ee4e1fca524ea3fcd1f31bd95ade3598c";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2023-07-28 13:37:31 +00:00
|
|
|
buildInputs = [ ament-cmake ament-cmake-vendor-package ];
|
2022-12-09 19:20:15 -05:00
|
|
|
propagatedBuildInputs = [ sqlite ];
|
2023-07-28 13:37:31 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-vendor-package ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "SQLite 3 vendor package";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|