timescaledb: 0.11.0 -> 1.0.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
cecee87f39
commit
a713251348
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake, postgresql }:
|
{ stdenv, fetchFromGitHub, cmake, postgresql, openssl }:
|
||||||
|
|
||||||
# # To enable on NixOS:
|
# # To enable on NixOS:
|
||||||
# config.services.postgresql = {
|
# config.services.postgresql = {
|
||||||
@ -8,16 +8,16 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "timescaledb-${version}";
|
name = "timescaledb-${version}";
|
||||||
version = "0.11.0";
|
version = "1.0.0";
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
buildInputs = [ postgresql ];
|
buildInputs = [ postgresql openssl ];
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "timescale";
|
owner = "timescale";
|
||||||
repo = "timescaledb";
|
repo = "timescaledb";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
sha256 = "06xysf45r0c2sjfl6vgdbrm7pn7nxx2n0k29bm88q0ipyyp9fr0v";
|
sha256 = "1359jc0dw8q3f0iipqfadzs8lvri9qa5w59ziz00x1d09ppw2q40";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Fix the install phase which tries to install into the pgsql extension dir,
|
# Fix the install phase which tries to install into the pgsql extension dir,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user