Merge pull request #123614 from marsam/update-pgvector

postgresqlPackages.pgvector: 0.1.2 -> 0.1.4
This commit is contained in:
Mario Rodas 2021-05-19 19:24:42 -05:00 committed by GitHub
commit 62b840ba3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,20 +2,20 @@
stdenv.mkDerivation rec {
pname = "pgvector";
version = "0.1.2";
version = "0.1.4";
src = fetchFromGitHub {
owner = "ankane";
repo = pname;
rev = "v${version}";
sha256 = "1vq672ghhv0azpzgfb7azb36kbjyz9ypcly7r16lrryvjgp5lcjs";
sha256 = "022f56rhvzq5f6clihxg5c8kyvjp1byjipha1ni6yiqzh3wvqccq";
};
buildInputs = [ postgresql ];
installPhase = ''
install -D -t $out/lib vector.so
install -D -t $out/share/postgresql/extension vector-*.sql
install -D -t $out/share/postgresql/extension sql/vector-*.sql
install -D -t $out/share/postgresql/extension vector.control
'';