diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-04-15T23·06+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-04-15T23·06+0200 |
commit | 985ca0a3e58fa548ea3c3eb9e69f99b758001a7e (patch) | |
tree | 81efd63c2b7b5a02a4595b29fac16eb01f45577b /default.nix | |
parent | 72f6fa65fd4fe5ff9788a733ed3f53b18f9242ae (diff) |
fix(build): Add PostgreSQL library to Nix dependencies
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix index 14e2219a4421..cf295fa6ffc7 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; |