summary refs log tree commit diff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-05-26 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-05-26 04:20:00 +0000
commit66ca6d0b6187c06dad502b8449318d3b1a808f6e (patch)
tree294ddfd880f044c7ef57468be88228bcb2374a39 /pkgs/servers/sql
parent05ef940b94fe76e7ac06ea45a625adc8e4be96f9 (diff)
downloadnixpkgs-66ca6d0b6187c06dad502b8449318d3b1a808f6e.tar
nixpkgs-66ca6d0b6187c06dad502b8449318d3b1a808f6e.tar.gz
nixpkgs-66ca6d0b6187c06dad502b8449318d3b1a808f6e.tar.bz2
nixpkgs-66ca6d0b6187c06dad502b8449318d3b1a808f6e.tar.lz
nixpkgs-66ca6d0b6187c06dad502b8449318d3b1a808f6e.tar.xz
nixpkgs-66ca6d0b6187c06dad502b8449318d3b1a808f6e.tar.zst
nixpkgs-66ca6d0b6187c06dad502b8449318d3b1a808f6e.zip
postgresqlPackages.pgvector: 0.1.4 -> 0.1.5
Diffstat (limited to 'pkgs/servers/sql')
-rw-r--r--pkgs/servers/sql/postgresql/ext/pgvector.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/pgvector.nix b/pkgs/servers/sql/postgresql/ext/pgvector.nix
index 623bc8c42f8..88f1b1ebad0 100644
--- a/pkgs/servers/sql/postgresql/ext/pgvector.nix
+++ b/pkgs/servers/sql/postgresql/ext/pgvector.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "pgvector";
-  version = "0.1.4";
+  version = "0.1.5";
 
   src = fetchFromGitHub {
     owner = "ankane";
     repo = pname;
     rev = "v${version}";
-    sha256 = "022f56rhvzq5f6clihxg5c8kyvjp1byjipha1ni6yiqzh3wvqccq";
+    sha256 = "0zrb9r9yh05nip2gwg96fhfk766hwqwa8plcvj2b4x4hhjk6q1ps";
   };
 
   buildInputs = [ postgresql ];