Skip to content

Commit

Permalink
build(nix): Add missing buildInputs to nix package
Browse files Browse the repository at this point in the history
  • Loading branch information
mxxntype committed May 22, 2024
1 parent 52e6704 commit 9c6873e
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions packages/default/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
];
}

0 comments on commit 9c6873e

Please sign in to comment.