about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMarek Mahut <marek.mahut@gmail.com>2019-08-02 09:16:09 +0200
committerGitHub <noreply@github.com>2019-08-02 09:16:09 +0200
commit7d4f67a23f599d82f26d1ec9b89f82e1cc5f3ba9 (patch)
tree8274f9bdfba26530ab9c3b5782dffe25af21645f /pkgs
parent06be47745692f0b1ff6b597ebbbd0659c5b064d1 (diff)
parent8ebe63c2460056a95ecf902a5b3ff98b4f8c431a (diff)
downloadnixlib-7d4f67a23f599d82f26d1ec9b89f82e1cc5f3ba9.tar
nixlib-7d4f67a23f599d82f26d1ec9b89f82e1cc5f3ba9.tar.gz
nixlib-7d4f67a23f599d82f26d1ec9b89f82e1cc5f3ba9.tar.bz2
nixlib-7d4f67a23f599d82f26d1ec9b89f82e1cc5f3ba9.tar.lz
nixlib-7d4f67a23f599d82f26d1ec9b89f82e1cc5f3ba9.tar.xz
nixlib-7d4f67a23f599d82f26d1ec9b89f82e1cc5f3ba9.tar.zst
nixlib-7d4f67a23f599d82f26d1ec9b89f82e1cc5f3ba9.zip
Merge pull request #65765 from marsam/update-timescaledb
postgresqlPackages.timescaledb: 1.4.0 -> 1.4.1
Diffstat (limited to 'pkgs')
-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 c77c01f8d204..77da47b00e0d 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;
   };