31 lines
877 B
Nix
31 lines
877 B
Nix
|
{ lib, stdenv, fetchFromGitHub, postgresql }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "pgvector";
|
||
|
version = "0.6.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "pgvector";
|
||
|
repo = "pgvector";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-r+TpFJg6WrMn0L2B7RpmSRvw3XxpHzMRtpFWDCzLvgs=";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ postgresql ];
|
||
|
|
||
|
installPhase = ''
|
||
|
install -D -t $out/lib vector${postgresql.dlSuffix}
|
||
|
install -D -t $out/share/postgresql/extension sql/vector-*.sql
|
||
|
install -D -t $out/share/postgresql/extension vector.control
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Open-source vector similarity search for PostgreSQL";
|
||
|
homepage = "https://github.com/pgvector/pgvector";
|
||
|
changelog = "https://github.com/pgvector/pgvector/raw/v${version}/CHANGELOG.md";
|
||
|
license = licenses.postgresql;
|
||
|
platforms = postgresql.meta.platforms;
|
||
|
maintainers = [ ];
|
||
|
};
|
||
|
}
|