summary refs log tree commit diff
path: root/pkgs/servers/sql/postgresql
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2019-08-02 09:47:38 +0200
committerVladimír Čunát <v@cunat.cz>2019-08-02 09:47:38 +0200
commita89f245f3b6556f82649076d881e495aa727e047 (patch)
tree47602b6a09e8d8a1931790b1b930eab357dc48d6 /pkgs/servers/sql/postgresql
parent30969073f00a76942792dd24f0dbbf95557643b1 (diff)
parent002b853782e939c50da3fa7d424b08346f39eb6f (diff)
downloadnixpkgs-a89f245f3b6556f82649076d881e495aa727e047.tar
nixpkgs-a89f245f3b6556f82649076d881e495aa727e047.tar.gz
nixpkgs-a89f245f3b6556f82649076d881e495aa727e047.tar.bz2
nixpkgs-a89f245f3b6556f82649076d881e495aa727e047.tar.lz
nixpkgs-a89f245f3b6556f82649076d881e495aa727e047.tar.xz
nixpkgs-a89f245f3b6556f82649076d881e495aa727e047.tar.zst
nixpkgs-a89f245f3b6556f82649076d881e495aa727e047.zip
Merge branch 'master' into openssl-1.1
... to avoid the accidental gnupatch rebuild
Diffstat (limited to 'pkgs/servers/sql/postgresql')
-rw-r--r--pkgs/servers/sql/postgresql/ext/timescaledb.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/timescaledb.nix b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
index c77c01f8d20..77da47b00e0 100644
--- a/pkgs/servers/sql/postgresql/ext/timescaledb.nix
+++ b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
@@ -8,7 +8,7 @@
 
 stdenv.mkDerivation rec {
   name = "timescaledb-${version}";
-  version = "1.4.0";
+  version = "1.4.1";
 
   nativeBuildInputs = [ cmake ];
   buildInputs = [ postgresql openssl ];
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
     owner  = "timescale";
     repo   = "timescaledb";
     rev    = "refs/tags/${version}";
-    sha256 = "0xjl3pdm36pksbkhl44kixqkfv8qpdm4frfwxv0p4vvjmlhslz48";
+    sha256 = "1gbca0fyaxjkwijdp2ah4iykwq5xabz9kkf8ak76sif4lz64y54b";
   };
 
   cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" ];
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "Scales PostgreSQL for time-series data via automatic partitioning across time and space";
     homepage    = https://www.timescale.com/;
-    maintainers = with maintainers; [ volth ];
+    maintainers = with maintainers; [ volth marsam ];
     platforms   = postgresql.meta.platforms;
     license     = licenses.asl20;
   };