linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libtgvoip / default.nix
blob920315bb1bc2440f7726be952360fcec3baa6642
1 { stdenv, lib, fetchFromGitHub, pkg-config, autoreconfHook
2 , openssl, libopus, alsaLib, libpulseaudio
3 }:
5 with lib;
7 stdenv.mkDerivation rec {
8   pname = "libtgvoip";
9   version = "unstable-2020-03-02";
11   src = fetchFromGitHub {
12     owner = "telegramdesktop";
13     repo = "libtgvoip";
14     rev = "e422d2a80546a32ab7166a9b1058bacfc5daeefc";
15     sha256 = "0n6f7215k74039j0zmicjzhj6f45mq6fvkrwzyzibcrv87ib17fc";
16   };
18   outputs = [ "out" "dev" ];
20   nativeBuildInputs = [ pkg-config autoreconfHook ];
21   buildInputs = [ openssl libopus alsaLib libpulseaudio ];
22   enableParallelBuilding = true;
24   meta = {
25     description = "VoIP library for Telegram clients";
26     license = licenses.unlicense;
27     platforms = platforms.linux;
28     homepage = "https://github.com/telegramdesktop/libtgvoip";
29     maintainers = with maintainers; [ ilya-fedin ];
30   };