mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 19:35:25 -05:00
gnu: sbcl-uffi: Remove Make reference from closure.
* gnu/packages/lisp-xyz.scm (sbcl-uffi)[source]: Delete the 'debian' folder. This takes the closure size from 209 MiB down to 151 MiB.
This commit is contained in:
parent
474a3da8e4
commit
681a02916d
1 changed files with 7 additions and 1 deletions
|
@ -10354,7 +10354,13 @@ (define-public sbcl-uffi
|
|||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1hqszvz0a3wk4s9faa83sc3vjxcb5rxmjclyr17yzwg55z733kry"))))
|
||||
(base32 "1hqszvz0a3wk4s9faa83sc3vjxcb5rxmjclyr17yzwg55z733kry"))
|
||||
(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)
|
||||
(arguments
|
||||
`(#:tests? #f ; TODO: Fix use of deprecated ASDF functions
|
||||
|
|
Loading…
Reference in a new issue