File tree 3 files changed +20
-2
lines changed
3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ RUN curl -o /tmp/quicklisp.lisp 'https://beta.quicklisp.org/quicklisp.lisp' && \
50
50
# quickload libraries
51
51
ADD . /src/docker-lisp
52
52
WORKDIR /src/docker-lisp
53
- RUN sbcl --eval '(ql:quickload (uiop:read-file-lines "quicklisp-libraries.txt"))' --quit
53
+ RUN sbcl --load "quantumlisp.lisp" -- eval '(ql:quickload (uiop:read-file-lines "quicklisp-libraries.txt"))' --quit
54
54
55
55
# enter into an SBCL REPL (requirements: rlwrap, sbcl)
56
56
CMD sleep 0.05; rlwrap sbcl
Original file line number Diff line number Diff line change 1
- 2019-11-30
1
+ 2020-02-18
Original file line number Diff line number Diff line change
1
+ (ql :quickload :drakma )
2
+
3
+ (defun https-fetch (url file &key (follow-redirects t ) quietly
4
+ (if-exists :rename-and-delete )
5
+ (maximum-redirects ql-http :*maximum-redirects* ))
6
+ (declare (ignore follow-redirects quietly maximum-redirects if-exists))
7
+ (let ((response (drakma :http-request url :force-binary t )))
8
+ (with-open-file (s file :direction :output :if-exists :supersede :if-does-not-exist :create
9
+ :element-type ' (unsigned-byte 8 ))
10
+ (write-sequence response s)))
11
+ nil )
12
+
13
+ (setf ql-http :*fetch-scheme-functions*
14
+ (append ql-http :*fetch-scheme-functions*
15
+ ' ((" https" . https-fetch))))
16
+
17
+ (ql-dist :install-dist " https://quicklisp.infra.rigetti.com:443/quantumlisp.txt"
18
+ :prompt nil )
You can’t perform that action at this time.
0 commit comments