spoofdpi: init at 0.10.12 (#337795)

This commit is contained in:
Masum Reza 2024-08-30 01:25:11 +05:30 committed by GitHub
commit 80d361979e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 35 additions and 0 deletions

View File

@ -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";

View File

@ -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 ];
};
}