gnu: gupnp-1.4: Patch for meson compatibility.

* gnu/packages/gnome.scm (gupnp-1.4)[arguments]: Add phase
'meson-compatibility to patch section name.

Change-Id: Ic33d283b4b8bca36527f17e93be78af216bd05cd
This commit is contained in:
Ricardo Wurmus 2024-08-19 23:15:06 +02:00 committed by Ludovic Courtès
parent 20abe2a27f
commit 2648f59e09
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1465,7 +1465,16 @@ (define-public gupnp-1.4
(sha256
(base32
"0vz3ifs8mi3zaz8zj8v27zfkf6xg82y39mcgqspa38jdp01gn3sr"))))
(propagated-inputs (modify-inputs (package-propagated-inputs gupnp)
(arguments
(substitute-keyword-arguments (package-arguments gupnp)
((#:phases phases)
#~(modify-phases #$phases
(add-after 'unpack 'meson-compatibility
(lambda _
(substitute* "subprojects/gssdp-1.2.wrap"
(("provides") "provide"))))))))
(propagated-inputs
(modify-inputs (package-propagated-inputs gupnp)
(replace "libsoup" libsoup-minimal-2)
(replace "gssdp" gssdp-1.4)))))