all repos — website @ 55f901bcc06ad8e61de62f9fc88049c1034c1bac

My website

Fix access to tools from nativeBuildInputs
Alan Pearce alan@alanpearce.eu
Sat, 01 Jul 2023 09:55:12 +0200
commit

55f901bcc06ad8e61de62f9fc88049c1034c1bac

parent

f94321a27b8ef36423445b021f53593cb46a9864

1 files changed, 1 insertions(+), 2 deletions(-)

jump to
M flake.nixflake.nix
@@ -47,10 +47,9 @@ };           };
           devShell = pkgs.mkShell {
             buildInputs = with pkgs; [
-              nativeBuildInputs
               caddy
               flyctl
-            ];
+            ] ++ nativeBuildInputs;
           };
         });
 }