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

25 lines
730 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, sqlite }:
buildRosPackage {
pname = "ros-iron-sqlite3-vendor";
version = "0.22.8-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosbag2-release/archive/release/iron/sqlite3_vendor/0.22.8-1.tar.gz";
name = "0.22.8-1.tar.gz";
sha256 = "f41171ae449132dc9e2de97ab86021eeef9e35df8bf4b7a8db011b81a834ab85";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ sqlite ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "SQLite 3 vendor package";
license = with lib.licenses; [ asl20 ];
};
}