2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 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";
|
2023-07-28 13:37:31 +00:00
|
|
|
version = "0.24.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-07-28 13:37:31 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rosbag2-release/archive/release/rolling/sqlite3_vendor/0.24.0-1.tar.gz";
|
|
|
|
name = "0.24.0-1.tar.gz";
|
|
|
|
sha256 = "ede6a05bc542737d5a89a440d8b31b4dee733e44d15209b56be54227ece2d59c";
|
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 = {
|
|
|
|
description = ''SQLite 3 vendor package'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|