diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 8ab2825ce1a5..3da9775909d3 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -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"; diff --git a/pkgs/by-name/sp/spoofdpi/package.nix b/pkgs/by-name/sp/spoofdpi/package.nix new file mode 100644 index 000000000000..5c3e30f342a6 --- /dev/null +++ b/pkgs/by-name/sp/spoofdpi/package.nix @@ -0,0 +1,28 @@ +{ + 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 ]; + }; +}