Skip to content

Commit

Permalink
Merge pull request #123614 from marsam/update-pgvector
Browse files Browse the repository at this point in the history
postgresqlPackages.pgvector: 0.1.2 -> 0.1.4
  • Loading branch information
marsam committed May 20, 2021
2 parents 480984e + dcd1493 commit 62b840b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/servers/sql/postgresql/ext/pgvector.nix
Expand Up @@ -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
'';

Expand Down

0 comments on commit 62b840b

Please sign in to comment.