summary refs log tree commit diff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorvolth <volth@webmaster.ms>2017-09-29 13:16:17 +0300
committerGitHub <noreply@github.com>2017-09-29 13:16:17 +0300
commit24890984e758a3f9de645181bd758ec8e6af34c0 (patch)
tree8d58abf9839970a9e328be848fdf9b11f115a9e5 /pkgs/servers/sql
parenta047e19c15ec7ee7f095657e9203fe292c26f57b (diff)
downloadnixlib-24890984e758a3f9de645181bd758ec8e6af34c0.tar
nixlib-24890984e758a3f9de645181bd758ec8e6af34c0.tar.gz
nixlib-24890984e758a3f9de645181bd758ec8e6af34c0.tar.bz2
nixlib-24890984e758a3f9de645181bd758ec8e6af34c0.tar.lz
nixlib-24890984e758a3f9de645181bd758ec8e6af34c0.tar.xz
nixlib-24890984e758a3f9de645181bd758ec8e6af34c0.tar.zst
nixlib-24890984e758a3f9de645181bd758ec8e6af34c0.zip
timescaledb: cosmetics
Diffstat (limited to 'pkgs/servers/sql')
-rw-r--r--pkgs/servers/sql/postgresql/timescaledb/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/servers/sql/postgresql/timescaledb/default.nix b/pkgs/servers/sql/postgresql/timescaledb/default.nix
index 5810ae868918..fbf0bfa19265 100644
--- a/pkgs/servers/sql/postgresql/timescaledb/default.nix
+++ b/pkgs/servers/sql/postgresql/timescaledb/default.nix
@@ -1,5 +1,11 @@
 { stdenv, fetchFromGitHub, postgresql }:
 
+# # To enable on NixOS:
+# config.services.postgresql = {
+#   extraPlugins = [ pkgs.timescaledb ];
+#   extraConfig = "shared_preload_libraries = 'timescaledb'";
+# }
+
 stdenv.mkDerivation rec {
   name = "timescaledb-${version}";
   version = "0.5.0";
@@ -21,7 +27,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    description = "TimescaleDB scales PostgreSQL for time-series data via automatic partitioning across time and space";
+    description = "Scales PostgreSQL for time-series data via automatic partitioning across time and space";
     homepage = https://www.timescale.com/;
     maintainers = with maintainers; [ volth ];
     platforms = platforms.linux;