about summary refs log tree commit diff
path: root/default.nix
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-04-15T23·06+0200
committerVincent Ambo <tazjin@gmail.com>2018-04-15T23·06+0200
commit985ca0a3e58fa548ea3c3eb9e69f99b758001a7e (patch)
tree81efd63c2b7b5a02a4595b29fac16eb01f45577b /default.nix
parent72f6fa65fd4fe5ff9788a733ed3f53b18f9242ae (diff)
fix(build): Add PostgreSQL library to Nix dependencies
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix
index 14e2219a44..cf295fa6ff 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;