Created
April 12, 2023 17:42
-
-
Save svetlyak40wt/3ba86647a3bceb3079a877da12b33b82 to your computer and use it in GitHub Desktop.
This code collects all packages, created by ASDF-SYSTEM and it's dependencies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; This code collects all packages, created by ASDF-SYSTEM and it's dependencies | |
(let* ((asdf-system :cl-telegram-bot) | |
(packages-before (list-all-packages)) | |
(packages-after (progn (ql:quickload asdf-system) | |
(list-all-packages)))) | |
(sort (set-difference packages-after packages-before | |
:key #'package-name | |
:test #'string=) | |
#'string< | |
:key #'package-name)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment