From 485944c47994e562fb5ac3ce2a1b78d15f211026 Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Tue, 25 Nov 2025 09:25:38 +0200 Subject: [PATCH] fix(nix): pkg-config and openssl in package inputs --- nix/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nix/default.nix b/nix/default.nix index 3b5d5c7..47b7fa2 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -3,6 +3,9 @@ rustPlatform, # nativeBuildInputs mold, + pkg-config, + # libs + openssl, }: let manifest = (lib.importTOML ../Cargo.toml).package; in @@ -16,8 +19,11 @@ in nativeBuildInputs = [ mold + pkg-config ]; + buildInputs = [openssl]; + meta = { description = manifest.description; license = lib.licenses.agpl3Plus; -- 2.44.1