gnu: Add libcallaudio.
* gnu/packages/telephony.scm (libcallaudio): New variable. Change-Id: I41cfe14136858fe0b2a302a9ed8d624d44ad2a95 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
037e30cf13
commit
60632b0a14
1 changed files with 25 additions and 0 deletions
|
@ -95,6 +95,7 @@
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
|
#:use-module (guix build-system meson)
|
||||||
#:use-module (guix build-system qt))
|
#:use-module (guix build-system qt))
|
||||||
|
|
||||||
(define-public phonesim
|
(define-public phonesim
|
||||||
|
@ -1168,3 +1169,27 @@ software foruses such as @acronym{VoIP, Voice over @acronym{IP, Internet
|
||||||
Protocol}}, @acronym{IM, Instant Messaging}, and many other real-time and
|
Protocol}}, @acronym{IM, Instant Messaging}, and many other real-time and
|
||||||
person-to-person communication services.")
|
person-to-person communication services.")
|
||||||
(license license:lgpl2.1)))
|
(license license:lgpl2.1)))
|
||||||
|
|
||||||
|
(define-public libcallaudio
|
||||||
|
(package
|
||||||
|
(name "libcallaudio")
|
||||||
|
(version "0.1.9")
|
||||||
|
(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
|
||||||
|
"0qnllb28101c2ss1k3iwr04gljfyjqmbla5csj6vkq1y63aagr9s"))))
|
||||||
|
(build-system meson-build-system)
|
||||||
|
(inputs (list alsa-lib glib pulseaudio))
|
||||||
|
(native-inputs
|
||||||
|
(list `(,glib "bin") ;for gdbus-codegen
|
||||||
|
pkg-config))
|
||||||
|
(home-page "https://gitlab.com/mobian1/callaudiod")
|
||||||
|
(synopsis "Library for audio routing during voice calls")
|
||||||
|
(description "This package provides @command{callaudiod}, a daemon to
|
||||||
|
route audio during phone calls, and a library.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
Reference in a new issue