Archived
1
0
Fork 0

gnu: guile-smc: Fix build with Guile 2.2.

* gnu/packages/guile-xyz.scm (guile-smc): Fix build with Guile 2.2.
  [native-inputs]: Replace "guile" with "guile-2.2" and "guile-lib" with
  "guile2.2-lib".

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Artyom V. Poptsov 2023-08-23 21:12:55 +03:00 committed by Ludovic Courtès
parent d936ed6f08
commit 23cbb464ab
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -5419,6 +5419,9 @@ with a FSM is being built (for example, from a Makefile.)")
(package
(inherit guile-smc)
(name "guile2.2-smc")
(native-inputs (modify-inputs (package-native-inputs guile-smc)
(replace "guile" guile-2.2)
(replace "guile-lib" guile2.2-lib)))
(inputs (modify-inputs (package-inputs guile-smc)
(replace "guile" guile-2.2)
(replace "guile-lib" guile2.2-lib)))))