From 985ca0a3e58fa548ea3c3eb9e69f99b758001a7e Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Mon, 16 Apr 2018 01:06:20 +0200 Subject: [PATCH] fix(build): Add PostgreSQL library to Nix dependencies --- default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 14e2219a4..cf295fa6f 100644 --- a/default.nix +++ b/default.nix @@ -18,7 +18,7 @@ in with unstable; rustPlatform.buildRustPackage rec { src = ./.; cargoSha256 = "0a0634v22wazmyym05x4ricqkxwn4r3spv6s2f3ilma65cy6qyrf"; - buildInputs = [ openssl pkgconfig ]; + buildInputs = [ openssl pkgconfig postgresql.lib ]; inherit doCheck;