Commit 938e5e2f authored by happysalada's avatar happysalada Committed by Yt
Browse files

timescaledb_toolkit: mark broken on darwin

parent 7d4e951c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
, nixosTests
, cargo-pgx_0_7_1
, nix-update-script
, stdenv
}:

(buildPgxExtension.override {cargo-pgx = cargo-pgx_0_7_1;})rec {
@@ -41,6 +42,6 @@
    license = licenses.asl20;

    # as it needs to be used with timescaledb, simply use the condition from there
    broken = versionOlder postgresql.version "12";
    broken = versionOlder postgresql.version "12" || stdenv.isDarwin;
  };
}