Generic Lisp: asdf version specific

I would like to know how to depend on a specific version of a library in an ASDF system?

(asdf:defsystem #:my-system
    :serial t
    :description "Describe my-system here"
    :author "My Name <my.name@example.com>"
    :license "Specify license here"
    :depends-on (#:hunchentoot
                 #:cl-who)
    :components ((:file "package")
                 (:file "dispatch")))

The above system depends on hunchentoot and cl-who. In my opinion, the latest versions of both libraries will be used. How can I specify to use cl-who 1.0.5 (for example) instead?

Thanks in advance.

+3
source share
2 answers
:depends-on ((:version #:hunchentoot "1.2.18")
             #:cl-who)

Please note that in the current ASDF(version 3.1), which will be processed as version 1.2.18+.

+6
source

Announcements: Versions on your ASDF systems can be used to enable ASDF to verify that everything is fine.

, , , ASDF, .

, Quicklisp , , Quicklisp.

+1

All Articles