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
|
|
|
|
|
2024-09-13 14:15:34 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-copyright, ament-cmake-gtest, ament-lint-auto, ament-lint-common, boost, class-loader, geometry-msgs, rclcpp, sqlite3-vendor, warehouse-ros }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-warehouse-ros-sqlite";
|
2024-09-13 14:15:34 +00:00
|
|
|
version = "1.0.5-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/warehouse_ros_sqlite-release/archive/release/rolling/warehouse_ros_sqlite/1.0.5-1.tar.gz";
|
|
|
|
name = "1.0.5-1.tar.gz";
|
|
|
|
sha256 = "d63961bb4aefb4ce229426771780d4a9c6268a9333dcdf6aae168e5c4051cfaf";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2024-09-13 14:15:34 +00:00
|
|
|
buildInputs = [ ament-cmake boost ];
|
2022-12-09 19:20:15 -05:00
|
|
|
checkInputs = [ ament-cmake-copyright ament-cmake-gtest ament-lint-auto ament-lint-common geometry-msgs ];
|
2024-09-13 14:15:34 +00:00
|
|
|
propagatedBuildInputs = [ class-loader rclcpp sqlite3-vendor warehouse-ros ];
|
2022-12-09 19:20:15 -05:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Implementation of warehouse_ros for sqlite";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|