add patched pidgin
This commit is contained in:
24
yagix/pidgin-sans-farstream.scm
Normal file
24
yagix/pidgin-sans-farstream.scm
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
(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
|
||||||
Reference in New Issue
Block a user