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/crystal/sqlite3-vendor/default.nix
2019-09-05 22:48:11 -04:00

24 lines
678 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, sqlite, cmake }:
buildRosPackage {
pname = "ros-crystal-sqlite3-vendor";
version = "0.0.7";
src = fetchurl {
url = https://github.com/ros2-gbp/rosbag2-release/archive/release/crystal/sqlite3_vendor/0.0.7-0.tar.gz;
sha256 = "243bb62d135e78429dd88a5f21c18293ccf173041cc274b3031c948f0c77c5c6";
};
buildType = "cmake";
buildInputs = [ sqlite ];
propagatedBuildInputs = [ sqlite ];
nativeBuildInputs = [ cmake ];
meta = {
description = ''SQLite 3 vendor package'';
license = with lib.licenses; [ asl20 ];
};
}