quicklisp-to-nix: check that the package is loadable

This commit is contained in:
Michael Raskin 2017-03-30 22:54:19 +02:00
parent 6f904bd9ec
commit 5032d477a0

View File

@ -11,4 +11,11 @@ rec {
url = ''<% @var url %>'';
sha256 = ''<% @var sha256 %>'';
};
overrides = x: {
postInstall = ''
echo "$CL_SOURCE_REGISTRY"
NIX_LISP_PRELAUNCH_HOOK='nix_lisp_run_single_form "(asdf:load-system :<% @ifnotempty testname %><% @var testname %><% @else %><% @var name %><% @endif %>)"' "$out/bin/<% @var filename %>-lisp-launcher.sh" ""
'';
};
}