me
/
guix
Archived
1
0
Fork 0

gnu: libnma: Depend on GTK 4.x only on supported platforms.

Partly fixes <https://issues.guix.gnu.org/58352>.

* gnu/packages/gnome.scm (libnma)[arguments]: Set "-Dlibnma_gtk4=false"
when (supported-package? gtk) returns #f.
[inputs]: Adjust accordingly.
master
Ludovic Courtès 2022-10-07 15:51:29 +02:00
parent a52f39ad0c
commit 06deab3321
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 6 additions and 2 deletions

View File

@ -1763,7 +1763,11 @@ client devices can handle.")
"0h095a26w3sgbspsf7wzz8ddg62j3jb9ckrrv41k7cdp0k2dkhsg"))))
(build-system meson-build-system)
(arguments
`(#:configure-flags (list "-Dlibnma_gtk4=true")
;; GTK 4.x depends on Rust (indirectly) so pull it only on platforms
;; where it is supported.
`(#:configure-flags ,(if (supported-package? gtk)
`(list "-Dlibnma_gtk4=true")
`(list "-Dlibnma_gtk4=false"))
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-docbook-xml
@ -1782,7 +1786,7 @@ client devices can handle.")
vala))
(inputs
(list gcr
gtk
(if (supported-package? gtk) gtk gtk+)
iso-codes
mobile-broadband-provider-info
network-manager))