From e1cc4966b7d08e6ce36e8d508e0e873548b5943b Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 17 Jan 2020 12:44:24 +0100 Subject: 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. --- nix/buildLisp/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nix/buildLisp') diff --git a/nix/buildLisp/default.nix b/nix/buildLisp/default.nix index 66de386631..baf7a14843 100644 --- a/nix/buildLisp/default.nix +++ b/nix/buildLisp/default.nix @@ -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. -- cgit 1.4.1