From 987188e5d606bf1ade566fff7dee0a8541cdf0a3 Mon Sep 17 00:00:00 2001 From: Jasper Mayone Date: Tue, 20 Jan 2026 18:38:21 -0500 Subject: [PATCH] fix: include lib directory in nix package The try.rb script uses require_relative to load lib/tui.rb and lib/fuzzy.rb, but these weren't being copied to the output. --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index 81bf2e1..14c7aee 100644 --- a/flake.nix +++ b/flake.nix @@ -74,6 +74,7 @@ installPhase = '' mkdir -p $out/bin cp try.rb $out/bin/try + cp -r lib $out/bin/ chmod +x $out/bin/try wrapProgram $out/bin/try \