chore: nix fmt
This commit is contained in:
parent
4a5e508bcd
commit
9e9121906e
|
@ -40,16 +40,17 @@
|
||||||
nativeBuildInputs =
|
nativeBuildInputs =
|
||||||
[
|
[
|
||||||
(pkgs.sbcl.withPackages (lib.const
|
(pkgs.sbcl.withPackages (lib.const
|
||||||
(lib.concatMap (p: p.lispLibs) inputsFrom)))
|
(lib.concatMap (p: p.lispLibs) inputsFrom)))
|
||||||
]
|
]
|
||||||
++ lib.concatMap (p: p.runtimeInputs or []) inputsFrom;
|
++ lib.concatMap (p: p.runtimeInputs or []) inputsFrom;
|
||||||
|
|
||||||
LD_LIBRARY_PATH = let
|
LD_LIBRARY_PATH = let
|
||||||
getNativeLibs = d:
|
getNativeLibs = d:
|
||||||
d.nativeLibs
|
d.nativeLibs
|
||||||
or []
|
or []
|
||||||
++ builtins.concatMap getNativeLibs (d.lispLibs 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));
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue