local/bin/homeinit: Remove Quicklisp installation.

We are better off installing Common Lisp packages with Guix.
master
Pierre Neidhardt 2020-06-11 12:18:20 +02:00
parent bd47a7af1e
commit 58599a2fb3
1 changed files with 0 additions and 17 deletions

View File

@ -227,23 +227,6 @@ if inpath guix; then
done
fi
section "Quicklisp"
QUICKLISP_DIR=$HOME/.quicklisp
QUICKLISP_URL=https://beta.quicklisp.org/quicklisp.lisp
DOWNLOAD_AGENT=curl
DOWNLOAD_AGENT_FLAGS=--output
LISP=sbcl
LISP_FLAGS=--no-userinit
if [ ! -d "$QUICKLISP_DIR" ] && inpath $LISP && inpath $DOWNLOAD_AGENT; then
$DOWNLOAD_AGENT $DOWNLOAD_AGENT_FLAGS /tmp/setup.lisp $QUICKLISP_URL
$LISP $LISP_FLAGS \
--eval '(require "asdf")' \
--load /tmp/setup.lisp \
--eval '(quicklisp-quickstart:install :path "'$QUICKLISP_DIR'/")' \
--eval '(uiop:quit)'
rm -v /tmp/setup.lisp
fi
if inpath emacs; then
message "Emacs cache folder"
mkdir -pv "$HOME/.cache/emacs/"