From bfceafae96988bc738dd3a251fdf258cb1c631a9 Mon Sep 17 00:00:00 2001 From: Jade Lovelace Date: Fri, 8 Mar 2024 00:05:25 -0800 Subject: [PATCH] fix git-requiring tests --- overlay.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/overlay.nix b/overlay.nix index fa60539..320080b 100644 --- a/overlay.nix +++ b/overlay.nix @@ -24,6 +24,9 @@ in VERSION_SUFFIX = "-lix"; patches = [ ]; + # FIXME: we don't know why this was not being picked up properly when + # included in nativeCheckInputs. + nativeBuildInputs = old.nativeBuildInputs or [ ] ++ [ final.git ]; }); stable = nix_2_18; nix_2_18_upstream = prev.nixVersions.nix_2_18;