diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-01-05 15:16:17 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-01-05 15:16:17 +0100 |
commit | 80902fc210d8dc28e14d63d68f398aef796b5838 (patch) | |
tree | d2e97e3f3f0e36c7bccd5834788a7be43e824afa /gnu/packages/guile-xyz.scm | |
parent | b5e3701f1aafacb6440cf18275a7f72a683d456e (diff) | |
download | guix-80902fc210d8dc28e14d63d68f398aef796b5838.tar.gz |
gnu: guile-avahi: Fix cross-compilation.
Previously ./configure would fail because 'guile.m4' wouldn't be picked up by 'autoreconf' when generating it. * gnu/packages/guile-xyz.scm (guile-avahi)[native-inputs]: Add GUILE-3.0.
Diffstat (limited to 'gnu/packages/guile-xyz.scm')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 9c94764ab3..86f6f727ab 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012-2022 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2012-2023 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014, 2015, 2018 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015, 2017, 2022 Christine Lemmer-Webber <cwebber@dustycloud.org> ;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co> @@ -4685,7 +4685,7 @@ errors.") (inputs (list guile-3.0 avahi)) (native-inputs - (list autoconf automake libtool pkg-config texinfo)) + (list autoconf automake libtool pkg-config texinfo guile-3.0)) (synopsis "Guile bindings to Avahi") (description "This package provides bindings for Avahi. It allows programmers to |