nix-ros-overlay/distros/rolling/warehouse-ros-sqlite/default.nix

27 lines
1.1 KiB
Nix
Raw Permalink Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ 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 }:
buildRosPackage {
pname = "ros-rolling-warehouse-ros-sqlite";
version = "1.0.5-r1";
src = fetchurl {
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";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake boost ];
checkInputs = [ ament-cmake-copyright ament-cmake-gtest ament-lint-auto ament-lint-common geometry-msgs ];
propagatedBuildInputs = [ class-loader rclcpp sqlite3-vendor warehouse-ros ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Implementation of warehouse_ros for sqlite";
license = with lib.licenses; [ bsdOriginal ];
};
}