livepeer: 0.5.20 -> 0.8.0

This commit is contained in:
wxt 2024-11-08 12:28:51 +08:00
parent bac24e8685
commit 98b7a76dc2
No known key found for this signature in database
GPG Key ID: F62181757D8BF693

View File

@ -3,32 +3,40 @@
fetchFromGitHub,
buildGoModule,
pkg-config,
ffmpeg,
ffmpeg-livepeer,
gnutls,
nix-update-script,
}:
buildGoModule rec {
pname = "livepeer";
version = "0.5.20";
version = "0.8.0";
proxyVendor = true;
vendorHash = "sha256-aRZoAEnRai8i5H08ReW8lEFlbmarYxU0lBRhR/Llw+M=";
vendorHash = "sha256-FCTdPVa10/DUYYuZDLtZsrCXCRoDRfuvnkzhmHJNvrk=";
src = fetchFromGitHub {
owner = "livepeer";
repo = "go-livepeer";
rev = "refs/tags/v${version}";
hash = "sha256-cOxIL093Mi+g9Al/SQJ6vdaeBAXUN6ZGsSaVvEIiJpU=";
hash = "sha256-UVL5y8z62pHi0mLueIp+iBxtzGf57LpGh+Czwg2pV0Q=";
};
nativeBuildInputs = [ pkg-config ];
nativeBuildInputs = [
pkg-config
];
buildInputs = [
ffmpeg
ffmpeg-livepeer
gnutls
];
__darwinAllowLocalNetworking = true;
postPatch = ''
rm -rf test/e2e # Require docker
'';
passthru.updateScript = nix-update-script { };
meta = {