me
/
guix
Archived
1
0
Fork 0

gnu: guile-ini: Fix cross-building.

* gnu/packages/guile-xyz.scm (guile-ini)[native-inputs]: Add guile-3.0,
  guile-lib and guile-smc.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Artyom V. Poptsov 2023-05-01 18:52:45 +03:00 committed by Ludovic Courtès
parent 10888f26e0
commit da39980b79
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 8 additions and 1 deletions

View File

@ -5398,7 +5398,14 @@ with a FSM is being built (for example, from a Makefile.)")
`(#:make-flags '("GUILE_AUTO_COMPILE=0") ;to prevent guild warnings `(#:make-flags '("GUILE_AUTO_COMPILE=0") ;to prevent guild warnings
#:phases (modify-phases %standard-phases #:phases (modify-phases %standard-phases
(delete 'strip)))) (delete 'strip))))
(native-inputs (list autoconf automake pkg-config texinfo)) (native-inputs (list autoconf
automake
pkg-config
texinfo
;; needed when cross-compiling.
guile-3.0
guile-lib
guile-smc))
(inputs (list bash-minimal guile-3.0 guile-lib)) (inputs (list bash-minimal guile-3.0 guile-lib))
(propagated-inputs (list guile-smc)) (propagated-inputs (list guile-smc))
(home-page "https://github.com/artyom-poptsov/guile-ini") (home-page "https://github.com/artyom-poptsov/guile-ini")