diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2022-11-20 14:42:02 +0100 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-11-20 14:45:00 +0100 |
commit | 52fdcf299dc0510697198f153c868f4fabee56a4 (patch) | |
tree | fd324d89266760250aedaf8714d486f752cc790d /gnu | |
parent | c8f406056fb0f371e8cc15d92938528d9948e767 (diff) |
gnu: cl-virality: Don't install examples.
* gnu/packages/lisp-xyz.scm (sbcl-virality)[arguments]: Add 'delete-examples'
phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 5d92e54a4f..27312cb369 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -19224,7 +19224,12 @@ fit together as required by any particular game.") "vorigin.test" "vshadow" "vumbra" - "vutils"))) + "vutils") + #:phases (modify-phases %standard-phases + (add-after 'unpack 'delete-examples + (lambda _ + ;; Don't install the big "examples" directory. + (delete-file-recursively "examples")))))) (inputs (list sbcl-3b-bmfont sbcl-babel |