gnu: sbcl-kmrcl: Remove Make reference from closure.

* gnu/packages/lisp-xyz.scm (sbcl-kmrcl)[source]: Delete the 'debian' folder.

This takes the closure size from 209 MiB down to 151 MiB.
This commit is contained in:
Pierre Neidhardt 2022-07-07 10:28:18 +02:00
parent b212cdaedb
commit b48e086e32
No known key found for this signature in database
GPG key ID: 9BDCF497A4BBCC7F

View file

@ -4056,7 +4056,13 @@ (define-public sbcl-kmrcl
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "06gx04mah5nc8w78s0j8628divbf1s5w7af8w7pvzb2d5mgvrbd2"))))
(base32 "06gx04mah5nc8w78s0j8628divbf1s5w7af8w7pvzb2d5mgvrbd2"))
(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)
(inputs
(list sbcl-rt))