From aa0b1c97f2bb8fff0c993b6326bb1227ca330f7f Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 6 Mar 2023 21:52:13 -0500 Subject: gnu: perl-gtk2: Add pkg-config to native inputs. Commit aca64d560452812208c654abba1ec3ab7041eefd "gnu: perl-extutils-pkgconfig: Support cross-compilation." causes pkg-config to no longer be propagated, but it is needed for this package, which doesn't exclusively uses perl-extutils-pkgconfig. * gnu/packages/gtk.scm (perl-gtk2) [native-inputs]: Add pkg-config. --- gnu/packages/gtk.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages/gtk.scm') diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 5101976fb9..05d4e98575 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -2146,7 +2146,7 @@ (define-public perl-gtk2 "0ry9jfvfgdwzalxcvwsgr7plhk3agx7p40l0fqdf3vrf7ds47i29")))) (build-system perl-build-system) (native-inputs - (list perl-extutils-depends perl-extutils-pkgconfig)) + (list perl-extutils-depends perl-extutils-pkgconfig pkg-config)) (inputs (list gtk+-2)) (propagated-inputs -- cgit v1.2.3 From 1820dc7ce6945569db4ef6e265764705e6aabc48 Mon Sep 17 00:00:00 2001 From: Z572 <873216071@qq.com> Date: Mon, 6 Mar 2023 14:50:35 +0800 Subject: gnu: graphene: Fix cross-compilation. * gnu/packages/gtk.scm (graphene)[arguments]<#:configure-flags>: Use 'disabled' replace 'false' with introspection option. Signed-off-by: Christopher Baines --- gnu/packages/gtk.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gnu/packages/gtk.scm') diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 05d4e98575..b9ef660a80 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -34,6 +34,7 @@ ;;; Copyright © 2022 Denis 'GNUtoo' Carikli ;;; Copyright © 2022 Petr Hodina ;;; Copyright © 2023 Sergiu Ivanov +;;; Copyright © 2023 Zheng Junjie <873216071@qq.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -2516,7 +2517,7 @@ (define-public graphene "-Dinstalled_tests=false" ,@(if (%current-target-system) ;; Introspection requires running binaries for 'host' on 'build'. - '("-Dintrospection=false") + '("-Dintrospection=disabled") '())))) (native-inputs `(("git" ,git-minimal/pinned) -- cgit v1.2.3