25 lines
850 B
Scheme
25 lines
850 B
Scheme
(define-module (yagix pidgin-sans-farstream)
|
|
#:use-module (guix packages)
|
|
#:use-module (guix utils)
|
|
#:use-module (guix gexp)
|
|
#:use-module (gnu packages)
|
|
#:use-module (gnu packages messaging))
|
|
|
|
; see https://lists.gnu.org/archive/html/bug-guix/2025-03/msg00108.html
|
|
(define-public pidgin-sans-farstream
|
|
;; Work around <https://issues.guix.gnu.org/75739>.
|
|
(package/inherit pidgin
|
|
(arguments
|
|
(substitute-keyword-arguments (package-arguments pidgin)
|
|
((#:configure-flags flags #~'())
|
|
;; Disable voice/video due to lack of Farstream.
|
|
#~(cons "--disable-vv" #$flags))))
|
|
(inputs
|
|
(modify-inputs (package-inputs pidgin)
|
|
(delete "farstream")
|
|
|
|
;; Pidgin expects "gst-plugins-base" to be among its inputs.
|
|
(append (specification->package "gst-plugins-base"))))))
|
|
|
|
pidgin-sans-farstream
|