timescaledb: cosmetics

This commit is contained in:
volth 2017-09-29 13:16:17 +03:00 committed by GitHub
parent a047e19c15
commit 24890984e7

View File

@ -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;