This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 0c6a7e1045 gnu: guile-semver: Fix cross-building.
0c6a7e1045 is described below

commit 0c6a7e1045cbd06336ef3699734a803a2e4038e5
Author: Efraim Flashner <[email protected]>
AuthorDate: Mon May 1 11:22:42 2023 +0300

    gnu: guile-semver: Fix cross-building.
    
    * gnu/packages/guile-xyz.scm (guile-semver)[native-inputs]: Add
    guile-3.0.
    (guile2.2-semver)[native-inputs]: Add guile-2.2.
---
 gnu/packages/guile-xyz.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 1fb0bbcd26..5c169dca08 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -5,7 +5,7 @@
 ;;; Copyright © 2016 Alex Sassmannshausen <[email protected]>
 ;;; Copyright © 2016-2023 Ricardo Wurmus <[email protected]>
 ;;; Copyright © 2016 Erik Edrosa <[email protected]>
-;;; Copyright © 2016, 2019, 2020, 2021 Eraim Flashner <[email protected]>
+;;; Copyright © 2016, 2019-2021, 2023 Eraim Flashner <[email protected]>
 ;;; Copyright © 2016, 2017, 2021 Alex Kost <[email protected]>
 ;;; Copyright © 2016, 2017 Adonay "adfeno" Felipe Nogueira 
<https://libreplanet.org/wiki/User:Adfeno> <[email protected]>
 ;;; Copyright © 2016, 2021 Amirouche <[email protected]>
@@ -4145,7 +4145,7 @@ tests being run, resulting clearer and more specific 
output.")
                 "109p4n39ln44cxvwdccf9kgb96qx54makvd2ir521ssz6wchjyag"))))
     (build-system gnu-build-system)
     (native-inputs
-     (list pkg-config))
+     (list guile-3.0 pkg-config))
     (inputs
      (list guile-3.0))
     (home-page "https://ngyro.com/software/guile-semver.html";)
@@ -4159,6 +4159,8 @@ the style of the Node Package Manager (NPM).")
   (package
     (inherit guile-semver)
     (name "guile2.2-semver")
+    (native-inputs
+     (list guile-2.2 pkg-config))
     (inputs
      (list guile-2.2))))
 

Reply via email to