guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: guile-semver: Fix cross-building.


From: guix-commits
Subject: branch master updated: gnu: guile-semver: Fix cross-building.
Date: Mon, 01 May 2023 07:20:35 -0400

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 <efraim@flashner.co.il>
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 <alex@pompo.co>
 ;;; Copyright © 2016-2023 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2016 Erik Edrosa <erik.edrosa@gmail.com>
-;;; Copyright © 2016, 2019, 2020, 2021 Eraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2016, 2019-2021, 2023 Eraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2016, 2017, 2021 Alex Kost <alezost@gmail.com>
 ;;; Copyright © 2016, 2017 Adonay "adfeno" Felipe Nogueira 
<https://libreplanet.org/wiki/User:Adfeno> <adfeno@openmailbox.org>
 ;;; Copyright © 2016, 2021 Amirouche <amirouche@hypermove.net>
@@ -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

[Prev in Thread] Current Thread [Next in Thread]