From 9e9121906e2d6114cb5cc6030e8250f40d3943a0 Mon Sep 17 00:00:00 2001 From: eriedaberrie Date: Thu, 19 Dec 2024 15:49:01 -0800 Subject: [PATCH] chore: nix fmt --- flake.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 273e7c1..c247275 100644 --- a/flake.nix +++ b/flake.nix @@ -40,16 +40,17 @@ nativeBuildInputs = [ (pkgs.sbcl.withPackages (lib.const - (lib.concatMap (p: p.lispLibs) inputsFrom))) + (lib.concatMap (p: p.lispLibs) inputsFrom))) ] ++ lib.concatMap (p: p.runtimeInputs or []) inputsFrom; LD_LIBRARY_PATH = let getNativeLibs = d: d.nativeLibs - or [] + or [] ++ builtins.concatMap getNativeLibs (d.lispLibs or []); - in lib.makeLibraryPath (lib.lists.unique (builtins.concatMap getNativeLibs inputsFrom)); + in + lib.makeLibraryPath (lib.lists.unique (builtins.concatMap getNativeLibs inputsFrom)); }; } );