2020-09-01 04:46:09 +02:00
|
|
|
{ stdenv, fetchFromGitHub, buildGoModule
|
|
|
|
, pkg-config, ffmpeg, gnutls
|
2018-07-02 09:40:37 +02:00
|
|
|
}:
|
|
|
|
|
2020-09-01 04:46:09 +02:00
|
|
|
buildGoModule rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "livepeer";
|
2020-11-11 15:22:32 +01:00
|
|
|
version = "0.5.12";
|
2018-07-02 09:40:37 +02:00
|
|
|
|
2020-09-01 04:46:09 +02:00
|
|
|
runVend = true;
|
2020-10-25 20:45:44 +01:00
|
|
|
vendorSha256 = "13cgwpf3v4vlvb0mgdxsdybpghx1cp3fzkdwmq8b193a8dcl8s63";
|
2018-07-02 09:40:37 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "livepeer";
|
|
|
|
repo = "go-livepeer";
|
2020-09-01 04:46:09 +02:00
|
|
|
rev = "v${version}";
|
2020-11-11 15:22:32 +01:00
|
|
|
sha256 = "15gx6pd6zn40x60p07dyaf1ydxvrg372lk3djp302mph8y0ijqfg";
|
2018-07-02 09:40:37 +02:00
|
|
|
};
|
|
|
|
|
2020-09-01 04:46:09 +02:00
|
|
|
# livepeer_cli has a vendoring problem
|
|
|
|
subPackages = [ "cmd/livepeer" ];
|
2020-03-18 11:48:37 +01:00
|
|
|
|
2020-09-01 04:46:09 +02:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
|
|
|
buildInputs = [ ffmpeg gnutls ];
|
2018-07-02 09:40:37 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Official Go implementation of the Livepeer protocol";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://livepeer.org";
|
2018-07-02 09:40:37 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ elitak ];
|
|
|
|
};
|
|
|
|
}
|