* gnu/packages/gnome.scm (json-glib)[native-inputs]: Only add more
inputs when not cross-compiling.
Change-Id: I987f382f02d9f7b79b6e281d1f6f6824c1b2dfd3
Enable the python bindings and switch to the meson build system that handles
the python bindings better than the Makefile build system here.
* gnu/packages/patches/dtc-meson-cell-overflow.patch: New file
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/bootloaders.scm (dtc): Update to 1.7.0.
[build-system]: Switch to the meson-build-system.
[arguments]: Remove #:make-flags. Add a new 'preparations phase. Do not edit
the Makefile in the 'patch-pkg-config phase. Remove the 'configure phase.
Change-Id: Ie61c920829ab3a8c32f4924c694dba6bda807711
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Soup2 is not supported anymore, we do not need to disable it explicitely.
* gnu/packages/gnome.scm (epiphany): Update to 44.7.
[#:phases]<skip-gtk-update-icon-cache>: Update for build system changes.
<disable-failing-tests>: Partially disable web_view_test.
<pre-check>: Remove.
<check>: Replace with a new phase.
<gst-wrap>: New phase.
[#:configure-flags]: Remove “-Dsoup2=disabled”.
[inputs]: Replace gcr-3 with gcr and webkitgtk-for-gtk3 with webkitgtk.
Add bash-minimal, gstreamer, gst-plugins-base, gst-plugins-good, and
libadwaita.
Remove libdazzle and libhandy.
Change-Id: I95ab6551a1b38254191801549be9dba0abb04593
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Due to an error in the nesting of S-Expressions, the re-linking of
/var/run/dbus to /run/dbus would occur even if it was already a
correct symlink. It should only happen if the symlink is different.
* gnu/services/dbus.scm (dbus-activation): Adjust accordingly.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
* gnu/packages/video.scm (mkvtoolnix): Update to 80.0.
[inputs]: Add GMP and QTSVG. Replace QT*-5 by their non-suffixed
variant.
[native-inputs]: Likewise, and change to RUBY-3.2.
Change-Id: If01ce578c9f9ac50e1c99e96c110687e8872177c
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* guix/build/zig-build-system.scm (zig-cross-build): New function
(lower): Add cross-compilation support
* guix/build-system/zig.scm (build): Add --target flag with target input
(check): Disable with cross compilation
Change-Id: I5f42ff897bfe00c92c6576900221a15ef210d669
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu/packages/golang.scm (go-golang-org-x-sys): Update to 0.8.0.
(go-golang-org-x-sys-0.8): Remove.
(go-github-com-quic-go-quic-go, go-github-com-quic-go-qtls-go1-20):
Use the new version of "go-golang-org-x-sys".
* gnu/packages/networking.scm (yggdrasil): Use the new version of
"go-golang-org-x-sys".
[propagated-inputs]: Don't rewrite inputs; add "go-golang-org-x-sys".
Change-Id: I969dd402427e345550038918f6de607413c44a61
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu/packages/games.scm (taisei)[arguments]: Convert to list of G-Expressions.
[license]: Reformat with guix style.
Change-Id: I717a7e408f5ae274c5aafa0f3e20bb7bca377b3a
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
* gnu/packages/game-development.scm (bbcsdl): Update to 1.39a.
[arguments]: Replace bundled "DejaVuSans-Oblique.ttf" with symlink in the
'install' phase.
Change-Id: I7b7c8ec8a8216812e1c7a1fab74695b14f4d3ca2
This package was updated in ada2152893 and
moved with lower version which broke yggdrasil.
Author: Artyom V. Poptsov <poptsov.artyom@gmail.com>
AuthorDate: Wed Nov 1 00:15:16 2023 +0300
Commit: Christopher Baines <mail@cbaines.net>
CommitDate: Fri Nov 3 10:14:06 2023 +0000
gnu: go-github-com-hjson-hjson-go: Update to 4.3.1.
* gnu/packages/golang.scm (go-github-com-hjson-hjson-go): Update to 4.3.1.
Change-Id: Iee2aef614686cbf79f388e2dd9435745d5502e2a
Signed-off-by: Andrew Tropin <andrew@trop.in>
MPD requires D-Bus for Zeroconf support. Avahi is currently included as
a dependency, but Zeroconf isn't actually enabled due D-Bus. This also
enables udisks support.
Before this change, `mpd -V' returns:
Other features:
epoll icu inotify ipv6 systemd tcp un
After this change, `mpd -V' returns:
Other features:
avahi dbus udisks epoll icu inotify ipv6 systemd tcp un
* gnu/packages/mpd.scm (mpd): Add D-Bus dependency.
[inputs]: Add dbus.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>