diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-03-06 21:52:13 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-03-06 21:52:13 -0500 |
commit | aa0b1c97f2bb8fff0c993b6326bb1227ca330f7f (patch) | |
tree | aa7e92f3fc55b11d6d1d46e4d1977c7603764a25 | |
parent | ff5f34ae757d709987896d6164bf125319a0f764 (diff) | |
download | guix-aa0b1c97f2bb8fff0c993b6326bb1227ca330f7f.tar.gz guix-aa0b1c97f2bb8fff0c993b6326bb1227ca330f7f.zip |
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.
-rw-r--r-- | gnu/packages/gtk.scm | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ so that they can be used normally in signals and properties.") "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 |