mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
33 lines
715 B
Nix
33 lines
715 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "livekit";
|
|
version = "1.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "livekit";
|
|
repo = "livekit";
|
|
rev = "v${version}";
|
|
hash = "sha256-i6G221n6wIOYo//+w/4XN4QpTkt7AYwAw6RBYo66vXI=";
|
|
};
|
|
|
|
vendorHash = "sha256-7MPjhjTIO7ZKKyc0Du8+0F+8PvpiwiIBMnXZiYX2XyI=";
|
|
|
|
subPackages = [ "cmd/server" ];
|
|
|
|
postInstall = ''
|
|
mv $out/bin/server $out/bin/livekit-server
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "End-to-end stack for WebRTC. SFU media server and SDKs";
|
|
homepage = "https://livekit.io/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ mgdelacroix ];
|
|
mainProgram = "livekit-server";
|
|
};
|
|
}
|