Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
61 lines
1.5 KiB
Nix
61 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;
|
|
};
|
|
})
|