Skip to content

Instantly share code, notes, and snippets.

@svetlyak40wt
Created April 12, 2023 17:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save svetlyak40wt/3ba86647a3bceb3079a877da12b33b82 to your computer and use it in GitHub Desktop.
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 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