about summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorKasper Gałkowski <k@galkowski.xyz>2023-03-02 18:44:32 +0100
committerKasper Gałkowski <k@galkowski.xyz>2023-03-02 19:04:47 +0100
commit092acca8b3b645be5261592d29aad77736e2d606 (patch)
tree0aa0d75e89410e8097a7d1f9b281556cac4765d7 /doc
parent5f2e4cf4bef01e1ab05c70c15d2960f48764fe03 (diff)
lisp-modules: make ql-import.lisp automatically pull the latest Quicklisp dist
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/lisp.section.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/languages-frameworks/lisp.section.md b/doc/languages-frameworks/lisp.section.md
index ef50da05c4d7b..3d5f0770f23fd 100644
--- a/doc/languages-frameworks/lisp.section.md
+++ b/doc/languages-frameworks/lisp.section.md
@@ -81,16 +81,15 @@ nix-shell --run 'sbcl --script ql-import.lisp'
 
 The script will:
 
-1. Download the Quicklisp `systems.txt` and `releases.txt` files
+1. Download the latest Quicklisp `systems.txt` and `releases.txt` files
 2. Generate an SQLite database of all QL systems in `packages.sqlite`
 3. Generate an `imported.nix` file from the database
 
 The maintainer's job there is to:
 
-1. Update the `import/main.lisp` file for new QL releases
-2. Re-run the `ql-import.lisp` script
-3. Add missing native dependencies in `ql.nix`
-4. For packages that still don't build, package them manually in `packages.nix`
+1. Re-run the `ql-import.lisp` script
+2. Add missing native dependencies in `ql.nix`
+3. For packages that still don't build, package them manually in `packages.nix`
 
 Also, the `imported.nix` file **must not be edited manually**! It should only be
 generated as described in this section.