From 37383c3ed73246cc881efb0c2c970105c3153a14 Mon Sep 17 00:00:00 2001 From: Nathan Date: Sat, 10 May 2025 14:58:52 -0500 Subject: [PATCH] try again --- ExampleApps.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ExampleApps.nix b/ExampleApps.nix index affd9c7..e381c4c 100644 --- a/ExampleApps.nix +++ b/ExampleApps.nix @@ -19,13 +19,16 @@ -I src -I include \ -Wall \ -o $name - ''; + ''; + + outputs = [ "out" "headers" ]; installPhase = '' mkdir -p $out/bin cp $name $out/bin - cp include -r $out + mkdir $headers + cp include -r $headers ''; };