1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/rolling/sqlite3-vendor/default.nix

25 lines
818 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-vendor-package, sqlite }:
buildRosPackage {
pname = "ros-rolling-sqlite3-vendor";
version = "0.29.0-r1";
src = fetchurl {
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";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ament-cmake-vendor-package ];
propagatedBuildInputs = [ sqlite ];
nativeBuildInputs = [ ament-cmake ament-cmake-vendor-package ];
meta = {
description = "SQLite 3 vendor package";
license = with lib.licenses; [ asl20 ];
};
}