timescaledb: 0.11.0 -> 1.0.0

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2018-11-03 19:49:00 -05:00
parent cecee87f39
commit a713251348

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake, postgresql }:
{ stdenv, fetchFromGitHub, cmake, postgresql, openssl }:
# # To enable on NixOS:
# config.services.postgresql = {
@ -8,16 +8,16 @@
stdenv.mkDerivation rec {
name = "timescaledb-${version}";
version = "0.11.0";
version = "1.0.0";
nativeBuildInputs = [ cmake ];
buildInputs = [ postgresql ];
buildInputs = [ postgresql openssl ];
src = fetchFromGitHub {
owner = "timescale";
repo = "timescaledb";
rev = "refs/tags/${version}";
sha256 = "06xysf45r0c2sjfl6vgdbrm7pn7nxx2n0k29bm88q0ipyyp9fr0v";
sha256 = "1359jc0dw8q3f0iipqfadzs8lvri9qa5w59ziz00x1d09ppw2q40";
};
# Fix the install phase which tries to install into the pgsql extension dir,