Unverified Commit 80d36197 authored by Masum Reza's avatar Masum Reza Committed by GitHub
Browse files

spoofdpi: init at 0.10.12 (#337795)

parents dd3bdc0b 39190e44
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -18242,6 +18242,13 @@
    githubId = 766350;
    name = "Richard Zetterberg";
  };
  s0me1newithhand7s = {
    name = "hand7s";
    email = "s0me1newithhand7s@gmail.com";
    matrix = "@s0me1newithhand7s:matrix.org";
    github = "s0me1newithhand7s";
    githubId = 117505144;
  };
  s1341 = {
    email = "s1341@shmarya.net";
    matrix = "@s1341:matrix.org";
+28 −0
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchFromGitHub,
  buildGoModule,
  ...
}:

buildGoModule rec {
  pname = "SpoofDPI";
  version = "0.11.1";

  src = fetchFromGitHub {
    owner = "xvzc";
    repo = "SpoofDPI";
    rev = "v${version}";
    hash = "sha256-GdGOnaIDy7XWWo0MOu+HfQcLrW/PDlRxf0y1jjJrZNQ=";
  };

  vendorHash = "sha256-47Gt5SI6VXq4+1T0LxFvQoYNk+JqTt3DonDXLfmFBzw=";

  meta = {
    homepage = "https://github.com/xvzc/SpoofDPI";
    description = "A simple and fast anti-censorship tool written in Go";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ s0me1newithhand7s ];
  };
}