Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #249757 from 1000101/tsdb

postgresqlPackages.timescaledb: 2.11.1 -> 2.11.2

authored by

Mario Rodas and committed by
GitHub
f7f5506f f852d375

+2 -2
+2 -2
pkgs/servers/sql/postgresql/ext/timescaledb.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "timescaledb${lib.optionalString (!enableUnfree) "-apache"}"; 16 - version = "2.11.1"; 16 + version = "2.11.2"; 17 17 18 18 nativeBuildInputs = [ cmake ]; 19 19 buildInputs = [ postgresql openssl libkrb5 ]; ··· 22 22 owner = "timescale"; 23 23 repo = "timescaledb"; 24 24 rev = version; 25 - sha256 = "sha256-nThflLfHvcEqJo1dz8PVca0ux7KJOW66nZ3dV1yTOCM="; 25 + sha256 = "sha256-c2fztGtl2cLThT0JhHCM0UaYkiWTp5T6TUZ3Au7CG7c="; 26 26 }; 27 27 28 28 cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" "-DTAP_CHECKS=OFF" ]