about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/ht/http3-ytproxy/package.nix
blob: 04e6965012937c9445612145d722a5f036a1b228 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib
, fetchFromGitHub
, buildGoModule
, libwebp
}:
buildGoModule rec {
  pname = "http3-ytproxy";
  version = "unstable-2022-07-03";

  src = fetchFromGitHub {
    owner = "TeamPiped";
    repo = pname;
    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";
  };
}