From 2f16f0e438ee70bcc717e003682d46d1b716d074 Mon Sep 17 00:00:00 2001 From: atlas Date: Fri, 10 Jul 2026 20:52:29 +0200 Subject: [PATCH] =?UTF-8?q?fix(#2280):=20add=20nativeBuildInputs=20to=20da?= =?UTF-8?q?emonBins=20+=20hiveForgePkg=20=E2=80=94=20sqlite/pkg-config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index f8a32275..7f60f0fe 100644 --- a/flake.nix +++ b/flake.nix @@ -183,7 +183,7 @@ # binary derivations means a prompt edit doesn't bust the cargo cache. daemonBins = craneLib.buildPackage { src = cleanSrc; - inherit cargoArtifacts; + inherit cargoArtifacts nativeBuildInputs; cargoExtraArgs = "--bin hive-c0re --bin hive-agent --bin hive-agent-mcp --bin hive-agent-wake --bin hive-bash-daemon --bin hive-bash-mcp --bin hive-matrix-daemon --bin hive-matrix-mcp"; pname = "hyperhive-daemon"; version = "0.1.0"; @@ -231,7 +231,7 @@ # `daemonBins`. hiveForgePkg = craneLib.buildPackage { src = cleanSrc; - inherit cargoArtifacts; + inherit cargoArtifacts nativeBuildInputs; cargoExtraArgs = "--bin hive-forge"; pname = "hive-forge"; version = "0.1.0";