summary refs log tree commit diff
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
parenta047e19c15ec7ee7f095657e9203fe292c26f57b (diff)
downloadnixpkgs-24890984e758a3f9de645181bd758ec8e6af34c0.tar
nixpkgs-24890984e758a3f9de645181bd758ec8e6af34c0.tar.gz
nixpkgs-24890984e758a3f9de645181bd758ec8e6af34c0.tar.bz2
nixpkgs-24890984e758a3f9de645181bd758ec8e6af34c0.tar.lz
nixpkgs-24890984e758a3f9de645181bd758ec8e6af34c0.tar.xz
nixpkgs-24890984e758a3f9de645181bd758ec8e6af34c0.tar.zst
nixpkgs-24890984e758a3f9de645181bd758ec8e6af34c0.zip
timescaledb: cosmetics
-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 5810ae86891..fbf0bfa1926 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;