···2, buildPgrxExtension
3, cargo-pgrx_0_11_2
4, clang_16
5-, fetchCrate
6, fetchFromGitHub
7, nix-update-script
8, nixosTests
···93 meta = with lib; {
94 # The pgrx 0.11.2 dependency is broken in aarch64-linux: https://github.com/pgcentralfoundation/pgrx/issues/1429
95 # It is fixed in pgrx 0.11.3, but upstream is still using pgrx 0.11.2
96- broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
0097 description = "Scalable, Low-latency and Hybrid-enabled Vector Search in Postgres";
98 homepage = "https://github.com/tensorchord/pgvecto.rs";
99 license = licenses.asl20;
···2, buildPgrxExtension
3, cargo-pgrx_0_11_2
4, clang_16
05, fetchFromGitHub
6, nix-update-script
7, nixosTests
···92 meta = with lib; {
93 # The pgrx 0.11.2 dependency is broken in aarch64-linux: https://github.com/pgcentralfoundation/pgrx/issues/1429
94 # It is fixed in pgrx 0.11.3, but upstream is still using pgrx 0.11.2
95+ # Additionally, upstream (accidentally) broke support for PostgreSQL 12 and 13 on 0.2.1, but
96+ # they are removing it in 0.3.0 either way: https://github.com/tensorchord/pgvecto.rs/issues/343
97+ broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin || (versionOlder postgresql.version "14");
98 description = "Scalable, Low-latency and Hybrid-enabled Vector Search in Postgres";
99 homepage = "https://github.com/tensorchord/pgvecto.rs";
100 license = licenses.asl20;