@@ -34,6 +34,7 @@
;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org>
;;; Copyright © 2020, 2021 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
+;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1026,6 +1027,33 @@ (define-public calf
;; The plugins are released under LGPLv2.1+
(license (list license:lgpl2.1+ license:gpl2+))))
+(define-public callaudiod
+ (package
+ (name "callaudiod")
+ (version "0.1.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.com/mobian1/callaudiod")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "04pn6f9p2n0qsy7cbchmnqlmjfvn908vdryc4y38srnj3xiq212l"))))
+ (build-system meson-build-system)
+ (native-inputs `(("alsa-lib" ,alsa-lib)
+ ("glib" ,glib)
+ ("glib" ,glib "bin")
+ ("pkg-config" ,pkg-config)
+ ("pulseaudio" ,pulseaudio)))
+ (inputs `(("alsa-utils" ,alsa-utils)
+ ("pulseaudio" ,pulseaudio)))
+ (synopsis "Call audio routing daemon")
+ (description "This package provides a daemon for dealing with audio routing
+during phone calls. It provides a D-Bus interface.")
+ (home-page "https://gitlab.com/mobian1/callaudiod")
+ (license license:gpl3+)))
+
(define-public caps-plugins-lv2
(package
(name "caps-plugins-lv2")