Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
55 lines
1.5 KiB
Nix
55 lines
1.5 KiB
Nix
{ lib
|
|
, cmake
|
|
, faiss
|
|
, fetchFromGitHub
|
|
, gomp
|
|
, llvmPackages
|
|
, nlohmann_json
|
|
, sqlite
|
|
, stdenv
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "sqlite-vss";
|
|
version = "0.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "asg017";
|
|
repo = "sqlite-vss";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-cb9UlSUAZp8B5NpNDBvJ2+ung98gjVKLxrM2Ek9fOcs=";
|
|
};
|
|
|
|
patches = [ ./use-nixpkgs-libs.patch ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ nlohmann_json faiss sqlite ]
|
|
++ lib.optional stdenv.hostPlatform.isLinux gomp
|
|
++ lib.optional stdenv.hostPlatform.isDarwin llvmPackages.openmp;
|
|
|
|
SQLITE_VSS_CMAKE_VERSION = finalAttrs.version;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm444 -t "$out/lib" \
|
|
"libsqlite_vector0${stdenv.hostPlatform.extensions.staticLibrary}" \
|
|
"libsqlite_vss0${stdenv.hostPlatform.extensions.staticLibrary}" \
|
|
"vector0${stdenv.hostPlatform.extensions.sharedLibrary}" \
|
|
"vss0${stdenv.hostPlatform.extensions.sharedLibrary}"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib;{
|
|
# Low maintenance mode, doesn't support up-to-date faiss
|
|
# https://github.com/NixOS/nixpkgs/pull/330191#issuecomment-2252965866
|
|
broken = lib.versionAtLeast faiss.version "1.8.0";
|
|
description = "SQLite extension for efficient vector search based on Faiss";
|
|
homepage = "https://github.com/asg017/sqlite-vss";
|
|
changelog = "https://github.com/asg017/sqlite-vss/releases/tag/v${finalAttrs.version}";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|