Skip to content

Commit

Permalink
spoofdpi: init at 0.10.12
Browse files Browse the repository at this point in the history
Co-authored-by: Radik Islamov <[email protected]>
  • Loading branch information
s0me1newithhand7s and ViZiD committed Aug 29, 2024
1 parent 0211be6 commit 39190e4
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/by-name/sp/spoofdpi/package.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}

0 comments on commit 39190e4

Please sign in to comment.