From 09720e2da267c22f3e135c2cb3843a269c53a65b Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Thu, 9 Jan 2020 03:32:29 +0000 Subject: fix(buildLisp): Wrap executables to set load paths correctly I can not currently find a way to set the CFFI variables correctly to get it to load libraries from Nix. In the absence of that feature, a wrapper also does the trick. --- nix/buildLisp/example/main.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nix/buildLisp/example') diff --git a/nix/buildLisp/example/main.lisp b/nix/buildLisp/example/main.lisp index f98bb8409a61..a29390cf4dba 100644 --- a/nix/buildLisp/example/main.lisp +++ b/nix/buildLisp/example/main.lisp @@ -4,4 +4,4 @@ (in-package :example) (defun main () - (format t "i <3 ~S" (who))) + (format t "i <3 ~A~%" (who))) -- cgit 1.4.1