nixpkgs/pkgs/servers/livepeer/default.nix

33 lines
771 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule
2020-09-01 02:46:09 +00:00
, pkg-config, ffmpeg, gnutls
2018-07-02 07:40:37 +00:00
}:
2020-09-01 02:46:09 +00:00
buildGoModule rec {
pname = "livepeer";
2021-03-17 14:46:12 +00:00
version = "0.5.15";
2018-07-02 07:40:37 +00:00
2020-09-01 02:46:09 +00:00
runVend = true;
2021-03-17 14:46:12 +00:00
vendorSha256 = "sha256-PhkdbixJDA9Ym4cK5ALIYJgDQnO5GTbZ0XGsVHcvYYQ=";
2018-07-02 07:40:37 +00:00
src = fetchFromGitHub {
owner = "livepeer";
repo = "go-livepeer";
2020-09-01 02:46:09 +00:00
rev = "v${version}";
2021-03-17 14:46:12 +00:00
sha256 = "sha256-ZB80QssqN9SBpmYk/QgPRVF88qedmNeUG+EkjxWz4rQ=";
2018-07-02 07:40:37 +00:00
};
2020-09-01 02:46:09 +00:00
# livepeer_cli has a vendoring problem
subPackages = [ "cmd/livepeer" ];
2020-03-18 10:48:37 +00:00
2020-09-01 02:46:09 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ ffmpeg gnutls ];
2018-07-02 07:40:37 +00:00
meta = with lib; {
2018-07-02 07:40:37 +00:00
description = "Official Go implementation of the Livepeer protocol";
homepage = "https://livepeer.org";
2018-07-02 07:40:37 +00:00
license = licenses.mit;
maintainers = with maintainers; [ elitak ];
};
}