2021-01-25 00:26:54 -08:00
|
|
|
{ lib, fetchFromGitHub, buildGoModule
|
2020-08-31 19:46:09 -07:00
|
|
|
, pkg-config, ffmpeg, gnutls
|
2018-07-02 00:40:37 -07:00
|
|
|
}:
|
|
|
|
|
2020-08-31 19:46:09 -07:00
|
|
|
buildGoModule rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "livepeer";
|
2021-02-06 06:32:01 -08:00
|
|
|
version = "0.5.14";
|
2018-07-02 00:40:37 -07:00
|
|
|
|
2020-08-31 19:46:09 -07:00
|
|
|
runVend = true;
|
2021-02-06 06:32:01 -08:00
|
|
|
vendorSha256 = "sha256-StkgU11VLEKg89kn3zPcdC8HBw9MmJrfDPGk1SUQO64=";
|
2018-07-02 00:40:37 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "livepeer";
|
|
|
|
repo = "go-livepeer";
|
2020-08-31 19:46:09 -07:00
|
|
|
rev = "v${version}";
|
2021-02-06 06:32:01 -08:00
|
|
|
sha256 = "sha256-GxgpGI1ymhbYhzCP2Bs5wJ5kq5rHHkClXcAsYlaQ/AM=";
|
2018-07-02 00:40:37 -07:00
|
|
|
};
|
|
|
|
|
2020-08-31 19:46:09 -07:00
|
|
|
# livepeer_cli has a vendoring problem
|
|
|
|
subPackages = [ "cmd/livepeer" ];
|
2020-03-18 03:48:37 -07:00
|
|
|
|
2020-08-31 19:46:09 -07:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
|
|
|
buildInputs = [ ffmpeg gnutls ];
|
2018-07-02 00:40:37 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-07-02 00:40:37 -07:00
|
|
|
description = "Official Go implementation of the Livepeer protocol";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://livepeer.org";
|
2018-07-02 00:40:37 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ elitak ];
|
|
|
|
};
|
|
|
|
}
|