feat(nix/buildLisp): Support passing programs to sbclWith
Adds the necessary attributes on derivations created by buildLisp.program for them to be passed to buildLisp.sbclWith. This makes it possible to easily spin up Lisp environments that contain everything needed for a given program.
This commit is contained in:
parent
14fb1ff1bc
commit
e1cc4966b7
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ let
|
|||
}
|
||||
|
||||
wrapProgram $out/bin/${name} --prefix LD_LIBRARY_PATH : "${libPath}"
|
||||
'';
|
||||
'' // { lispName = name; lispDeps = [ selfLib ]; lispNativeDeps = []; };
|
||||
|
||||
# 'sbclWith' creates an image with the specified libraries /
|
||||
# programs loaded.
|
||||
|
|
Loading…
Reference in a new issue