39190e44d4
Co-authored-by: Radik Islamov <vizid1337@gmail.com>
29 lines
607 B
Nix
29 lines
607 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|