Skip to content

Commit

Permalink
timescaledb: 0.11.0 -> 1.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Seipp <aseipp@pobox.com>
  • Loading branch information
thoughtpolice committed Nov 4, 2018
1 parent cecee87 commit a713251
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/servers/sql/postgresql/timescaledb/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake, postgresql }:
{ stdenv, fetchFromGitHub, cmake, postgresql, openssl }:

# # To enable on NixOS:
# config.services.postgresql = {
Expand All @@ -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,
Expand Down

0 comments on commit a713251

Please sign in to comment.