postgresqlPackages.timescaledb: fix darwin build

This commit is contained in:
Konstantin Alekseev 2021-05-17 12:21:44 +03:00 committed by Jonathan Ringer
parent 50fbc6b6b3
commit 73c7f50dc1

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, postgresql, openssl }:
{ lib, stdenv, fetchFromGitHub, cmake, postgresql, openssl, libkrb5 }:
# # To enable on NixOS:
# config.services.postgresql = {
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
version = "2.2.1";
nativeBuildInputs = [ cmake ];
buildInputs = [ postgresql openssl ];
buildInputs = [ postgresql openssl libkrb5 ];
src = fetchFromGitHub {
owner = "timescale";