livepeer: 0.8.8 -> 0.8.10 (#519649)

This commit is contained in:
Peder Bergebakken Sundt 2026-05-19 12:36:38 +00:00 committed by GitHub
commit 9fa1813df3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 3 deletions

View file

@ -17,6 +17,12 @@
(old: {
pname = "ffmpeg-livepeer";
postPatch = (old.postPatch or "") + ''
substituteInPlace libavcodec/tableprint_vlc.h \
--replace-fail 'define av_mallocz(s) NULL' 'define av_mallocz(s) NULL
#define av_malloc(s) NULL'
'';
meta = {
inherit (old.meta)
license

View file

@ -10,16 +10,16 @@
buildGoModule (finalAttrs: {
pname = "livepeer";
version = "0.8.8";
version = "0.8.10";
proxyVendor = true;
vendorHash = "sha256-cEpRLnLR0ia5vvoJ8Fwk/0qgvsnYw7vSpyS9BJQ8UfY=";
vendorHash = "sha256-Cn7GHNrFjGgzKPjSVGnoRE9Q2gd3Ji/ZrdVGB9v+0A8=";
src = fetchFromGitHub {
owner = "livepeer";
repo = "go-livepeer";
tag = "v${finalAttrs.version}";
hash = "sha256-DVgB/pE3nq6oHzLi+g/WUMQqrmXvJhPub7bmeLgyEDQ=";
hash = "sha256-jz8lgZItPDzAGKJrAFLiEUJ5nyTdw6kGneP6LtmWDYw=";
};
nativeBuildInputs = [
@ -31,6 +31,10 @@ buildGoModule (finalAttrs: {
gnutls
];
CGO_LDFLAGS = [
"-lm"
];
__darwinAllowLocalNetworking = true;
postPatch = ''