···22, buildPgrxExtension
33, cargo-pgrx_0_11_2
44, clang_16
55-, fetchCrate
65, fetchFromGitHub
76, nix-update-script
87, nixosTests
···9392 meta = with lib; {
9493 # The pgrx 0.11.2 dependency is broken in aarch64-linux: https://github.com/pgcentralfoundation/pgrx/issues/1429
9594 # It is fixed in pgrx 0.11.3, but upstream is still using pgrx 0.11.2
9696- broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
9595+ # Additionally, upstream (accidentally) broke support for PostgreSQL 12 and 13 on 0.2.1, but
9696+ # they are removing it in 0.3.0 either way: https://github.com/tensorchord/pgvecto.rs/issues/343
9797+ broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin || (versionOlder postgresql.version "14");
9798 description = "Scalable, Low-latency and Hybrid-enabled Vector Search in Postgres";
9899 homepage = "https://github.com/tensorchord/pgvecto.rs";
99100 license = licenses.asl20;