Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / livepeer / default.nix
blob695ceeb2b9a0b1722393f72db13a42eafcb5b520
1 { lib, fetchFromGitHub, buildGoModule
2 , pkg-config, ffmpeg, gnutls
3 }:
5 buildGoModule rec {
6   pname = "livepeer";
7   version = "0.5.20";
9   proxyVendor = true;
10   vendorHash = "sha256-aRZoAEnRai8i5H08ReW8lEFlbmarYxU0lBRhR/Llw+M=";
12   src = fetchFromGitHub {
13     owner = "livepeer";
14     repo = "go-livepeer";
15     rev = "v${version}";
16     sha256 = "sha256-cOxIL093Mi+g9Al/SQJ6vdaeBAXUN6ZGsSaVvEIiJpU=";
17   };
19   # livepeer_cli has a vendoring problem
20   subPackages = [ "cmd/livepeer" ];
22   nativeBuildInputs = [ pkg-config ];
24   buildInputs = [ ffmpeg gnutls ];
26   meta = with lib; {
27     description = "Official Go implementation of the Livepeer protocol";
28     homepage = "https://livepeer.org";
29     license = licenses.mit;
30     maintainers = with maintainers; [ elitak ];
31     mainProgram = "livepeer";
32   };