Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

41 lines
931 B
Nix

{
lib,
fetchFromGitHub,
buildGoModule,
libwebp,
}:
buildGoModule {
pname = "http3-ytproxy";
version = "0-unstable-2022-07-03";
src = fetchFromGitHub {
owner = "TeamPiped";
repo = "http3-ytproxy";
rev = "4059da180bb9d7b0de10c1a041bd0e134f1b6408";
hash = "sha256-ilIOkZ9lcuSigh/mMU7IGpWlFMFb2/Y11ri3659S8+I=";
};
patches = [
# this patch was created by updating the quic-go dependency, bumping the go version
# and running `go mod tidy`
./dependencies.patch
];
vendorHash = "sha256-17y+kxlLSqCFoxinNNKzg7IqGpbiv0IBsUuC9EC8xnk=";
buildInputs = [ libwebp ];
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "YouTube traffic proxy for video playback and images";
homepage = "https://github.com/TeamPiped/http3-ytproxy";
license = licenses.agpl3Only;
maintainers = with maintainers; [ _999eagle ];
mainProgram = "http3-ytproxy";
};
}