summary refs log tree commit diff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-06-14 16:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-06-14 16:20:00 -0500
commit6063569f0a546b3c22f1fa01791e4652615054a9 (patch)
tree144d22f62003a680d46be7d91c8d9b592ebe86be /pkgs/servers/sql
parent8c14a6f641b7f3baa57e55e784a0d8626325446b (diff)
downloadnixpkgs-6063569f0a546b3c22f1fa01791e4652615054a9.tar
nixpkgs-6063569f0a546b3c22f1fa01791e4652615054a9.tar.gz
nixpkgs-6063569f0a546b3c22f1fa01791e4652615054a9.tar.bz2
nixpkgs-6063569f0a546b3c22f1fa01791e4652615054a9.tar.lz
nixpkgs-6063569f0a546b3c22f1fa01791e4652615054a9.tar.xz
nixpkgs-6063569f0a546b3c22f1fa01791e4652615054a9.tar.zst
nixpkgs-6063569f0a546b3c22f1fa01791e4652615054a9.zip
timescaledb: disable telemetry
Diffstat (limited to 'pkgs/servers/sql')
-rw-r--r--pkgs/servers/sql/postgresql/ext/timescaledb.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/timescaledb.nix b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
index 17270e34f75..7fa128baabc 100644
--- a/pkgs/servers/sql/postgresql/ext/timescaledb.nix
+++ b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
@@ -20,6 +20,8 @@ stdenv.mkDerivation rec {
     sha256 = "1q3c4qsy4vb00a4p15km4w5d5xcppigf7rp4mqr3wln7i4d4lvnx";
   };
 
+  cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" ];
+
   # Fix the install phase which tries to install into the pgsql extension dir,
   # and cannot be manually overridden. This is rather fragile but works OK.
   patchPhase = ''