From ffc6e0a391b76fc96b4311081f580a1e6f7e3d8d Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Thu, 7 Jul 2022 10:08:38 +0200 Subject: [PATCH] gnu: sbcl-ptester: Remove Make reference from closure. * gnu/packages/lisp-check.scm (sbcl-ptester)[source]: Delete the 'debian' folder. This takes the closure size from 209 MiB down to 151 MiB. --- gnu/packages/lisp-check.scm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gnu/packages/lisp-check.scm b/gnu/packages/lisp-check.scm index 1795e050a4..b52f44e23f 100644 --- a/gnu/packages/lisp-check.scm +++ b/gnu/packages/lisp-check.scm @@ -695,7 +695,13 @@ advantages of @command{prove} are: (commit commit))) (file-name (git-file-name name version)) (sha256 - (base32 "1l0lfl7cdnr2qf4zh38hi4llxg22c49zkm639bdkmvlkzwj3ndwf")))) + (base32 "1l0lfl7cdnr2qf4zh38hi4llxg22c49zkm639bdkmvlkzwj3ndwf")) + (modules '((guix build utils))) + (snippet + ;; The useless bundled debian folder drags `make' into the closure. + `(begin + (delete-file-recursively "debian") + #t)))) (build-system asdf-build-system/sbcl) (home-page "http://quickdocs.org/ptester/") (synopsis "Portable test harness package")