callaudiod: init at 0.0.4

Co-authored-by: davidak <davidak@users.noreply.github.com>
This commit is contained in:
Pacman99 2020-12-25 11:04:23 -08:00
parent 0b5fd3b784
commit 51bcc5408f
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,43 @@
{ lib
, stdenv
, fetchFromGitLab
, meson
, ninja
, pkg-config
, glib
, alsaLib
, libpulseaudio
}:
stdenv.mkDerivation rec {
pname = "callaudiod";
version = "0.0.4";
src = fetchFromGitLab {
domain = "gitlab.com";
owner = "mobian1";
repo = pname;
rev = version;
sha256 = "07k7xp5a9c4d4lq7amaj6cg6b3gsd77x9wvf7nzcf4vpaph4yiyj";
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
alsaLib
libpulseaudio
glib
];
meta = with lib; {
description = "Daemon for dealing with audio routing during phone calls";
homepage = "https://gitlab.com/mobian1/callaudiod";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ pacman99 ];
platforms = platforms.linux;
};
}

View file

@ -1111,6 +1111,8 @@ in
bunny = callPackage ../tools/package-management/bunny { };
callaudiod = callPackage ../applications/audio/callaudiod { };
calls = callPackage ../applications/networking/calls { };
inherit (nodePackages) castnow;