[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/07: gnu: smalltalk: Move 'zip' from 'inputs' to 'native-inputs'.
From: |
guix-commits |
Subject: |
06/07: gnu: smalltalk: Move 'zip' from 'inputs' to 'native-inputs'. |
Date: |
Fri, 4 Jun 2021 07:45:51 -0400 (EDT) |
mothacehe pushed a commit to branch master
in repository guix.
commit 961a8f130275dc18cc8e602e0b2ab08b780eb46f
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Mon May 31 13:54:17 2021 +0200
gnu: smalltalk: Move 'zip' from 'inputs' to 'native-inputs'.
The 'zip' package is not in the references of 'smalltalk'.
As such, it probably should be a native input, not a regular
input. This can be confirmed by trying to cross-compile
the 'smalltalk' package, without this commit. The configure
script will ask to install InfoZIP.
* gnu/packages/smalltalk.scm
(smalltalk)[inputs]{zip}: Move to ...
(smalltalk)[native-inputs]{zip} ... here.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
gnu/packages/smalltalk.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/smalltalk.scm b/gnu/packages/smalltalk.scm
index a572570..af4b764 100644
--- a/gnu/packages/smalltalk.scm
+++ b/gnu/packages/smalltalk.scm
@@ -64,7 +64,8 @@
;; XXX: To be removed with the next release of Smalltalk.
("autoconf" ,autoconf)
("automake" ,automake)
- ("libtool" ,libtool)))
+ ("libtool" ,libtool)
+ ("zip" ,zip)))
;; TODO: These optional dependencies raise the closure size to ~1 GiB
;; from the current ~100 MiB, although some of them might be very
;; useful for end users:
@@ -81,8 +82,7 @@
("libffi" ,libffi)
("libltdl" ,libltdl)
("libsigsegv" ,libsigsegv)
- ("lightning" ,lightning)
- ("zip" ,zip)))
+ ("lightning" ,lightning)))
(arguments
`(#:phases
(modify-phases %standard-phases
- branch master updated (a9afff4 -> f50a88c), guix-commits, 2021/06/04
- 02/07: gnu: smalltalk: Use 'inputs' in phases instead of '%build-inputs'., guix-commits, 2021/06/04
- 01/07: gnu: ci: Use 'inputs' in build phases instead of '%build-inputs'., guix-commits, 2021/06/04
- 06/07: gnu: smalltalk: Move 'zip' from 'inputs' to 'native-inputs'.,
guix-commits <=
- 03/07: gnu: neovim: Use 'inputs' in phases instead of '%build-inputs'., guix-commits, 2021/06/04
- 05/07: gnu: ding: Use 'inputs' in build phases instead of '%build-inputs'., guix-commits, 2021/06/04
- 04/07: gnu: qemacs: Use 'native-inputs' instead of '%build-inputs'., guix-commits, 2021/06/04
- 07/07: gnu: smalltalk: Find glibc even when cross-compiling., guix-commits, 2021/06/04