2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchFromGitHub, buildGoModule
|
2020-09-01 03:46:09 +01:00
|
|
|
, pkg-config, ffmpeg, gnutls
|
2018-07-02 08:40:37 +01:00
|
|
|
}:
|
|
|
|
|
2020-09-01 03:46:09 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "livepeer";
|
2021-09-15 16:53:47 +01:00
|
|
|
version = "0.5.20";
|
2018-07-02 08:40:37 +01:00
|
|
|
|
2022-01-01 05:05:04 +00:00
|
|
|
proxyVendor = true;
|
|
|
|
vendorSha256 = "sha256-pyPxONcWniJoA0qYusHktF3/taYda2StaMiMhyRYEm4=";
|
2018-07-02 08:40:37 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "livepeer";
|
|
|
|
repo = "go-livepeer";
|
2020-09-01 03:46:09 +01:00
|
|
|
rev = "v${version}";
|
2021-09-15 16:53:47 +01:00
|
|
|
sha256 = "sha256-cOxIL093Mi+g9Al/SQJ6vdaeBAXUN6ZGsSaVvEIiJpU=";
|
2018-07-02 08:40:37 +01:00
|
|
|
};
|
|
|
|
|
2020-09-01 03:46:09 +01:00
|
|
|
# livepeer_cli has a vendoring problem
|
|
|
|
subPackages = [ "cmd/livepeer" ];
|
2020-03-18 10:48:37 +00:00
|
|
|
|
2020-09-01 03:46:09 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
|
|
|
buildInputs = [ ffmpeg gnutls ];
|
2018-07-02 08:40:37 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-07-02 08:40:37 +01:00
|
|
|
description = "Official Go implementation of the Livepeer protocol";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://livepeer.org";
|
2018-07-02 08:40:37 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ elitak ];
|
|
|
|
};
|
|
|
|
}
|