From 9c6873e1acef99c7c68e6dc23bd10a60777c8910 Mon Sep 17 00:00:00 2001 From: mxxntype <59417007+mxxntype@users.noreply.github.com> Date: Thu, 23 May 2024 01:38:41 +0300 Subject: [PATCH] build(nix): Add missing `buildInputs` to nix package --- packages/default/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/packages/default/default.nix b/packages/default/default.nix index b9f21c3..9667e3f 100644 --- a/packages/default/default.nix +++ b/packages/default/default.nix @@ -7,7 +7,12 @@ (pkgs.callPackage inputs.naersk {}).buildPackage { src = ../..; - # NOTE: If your application uses OpenSSL (making the build process fail), try: - # nativeBuildInputs = with pkgs; [ pkg-config ]; - buildInputs = with pkgs; [ protobuf ]; + nativeBuildInputs = with pkgs; [ + pkg-config + ]; + + buildInputs = with pkgs; [ + protobuf + postgresql + ]; }