mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
5eca80f7eb
kotatogram-desktop: 1.1.5 -> 1.2
32 lines
843 B
Nix
32 lines
843 B
Nix
{ stdenv, lib, fetchFromGitHub, pkg-config, autoreconfHook
|
|
, openssl, libopus, alsaLib, libpulseaudio
|
|
}:
|
|
|
|
with lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libtgvoip";
|
|
version = "unstable-2020-03-02";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "telegramdesktop";
|
|
repo = "libtgvoip";
|
|
rev = "e422d2a80546a32ab7166a9b1058bacfc5daeefc";
|
|
sha256 = "0n6f7215k74039j0zmicjzhj6f45mq6fvkrwzyzibcrv87ib17fc";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
|
buildInputs = [ openssl libopus alsaLib libpulseaudio ];
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "VoIP library for Telegram clients";
|
|
license = licenses.unlicense;
|
|
platforms = platforms.linux;
|
|
homepage = "https://github.com/telegramdesktop/libtgvoip";
|
|
maintainers = with maintainers; [ ilya-fedin ];
|
|
};
|
|
}
|