timescaledb_toolkit: mark broken on darwin

authored by happysalada and committed by Yt 938e5e2f 7d4e951c

+2 -1
+2 -1
pkgs/servers/sql/postgresql/ext/timescaledb_toolkit.nix
··· 5 , nixosTests 6 , cargo-pgx_0_7_1 7 , nix-update-script 8 }: 9 10 (buildPgxExtension.override {cargo-pgx = cargo-pgx_0_7_1;})rec { ··· 41 license = licenses.asl20; 42 43 # as it needs to be used with timescaledb, simply use the condition from there 44 - broken = versionOlder postgresql.version "12"; 45 }; 46 }
··· 5 , nixosTests 6 , cargo-pgx_0_7_1 7 , nix-update-script 8 + , stdenv 9 }: 10 11 (buildPgxExtension.override {cargo-pgx = cargo-pgx_0_7_1;})rec { ··· 42 license = licenses.asl20; 43 44 # as it needs to be used with timescaledb, simply use the condition from there 45 + broken = versionOlder postgresql.version "12" || stdenv.isDarwin; 46 }; 47 }