From cb56bd302d458f5ebe81ec8afe342e0fc32194cf Mon Sep 17 00:00:00 2001 From: Nathan Date: Sun, 11 May 2025 14:11:24 -0500 Subject: [PATCH] fix headers? --- ExampleApps.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ExampleApps.nix b/ExampleApps.nix index 994cb91..92db8bb 100644 --- a/ExampleApps.nix +++ b/ExampleApps.nix @@ -6,6 +6,8 @@ src = ./.; + outputs = [ "out" "dev" ]; + nativeBuildInputs = with pkgs; [ clang ]; @@ -24,6 +26,10 @@ installPhase = '' mkdir -p $out/bin cp $name $out/bin + + mkdir -p $dev/include/modules + cp -r include/* $dev/include + cp -r modules $dev/include/modules ''; };