mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
spoofdpi: init at 0.10.12 (#337795)
This commit is contained in:
commit
80d361979e
|
@ -18242,6 +18242,13 @@
|
||||||
githubId = 766350;
|
githubId = 766350;
|
||||||
name = "Richard Zetterberg";
|
name = "Richard Zetterberg";
|
||||||
};
|
};
|
||||||
|
s0me1newithhand7s = {
|
||||||
|
name = "hand7s";
|
||||||
|
email = "s0me1newithhand7s@gmail.com";
|
||||||
|
matrix = "@s0me1newithhand7s:matrix.org";
|
||||||
|
github = "s0me1newithhand7s";
|
||||||
|
githubId = 117505144;
|
||||||
|
};
|
||||||
s1341 = {
|
s1341 = {
|
||||||
email = "s1341@shmarya.net";
|
email = "s1341@shmarya.net";
|
||||||
matrix = "@s1341:matrix.org";
|
matrix = "@s1341:matrix.org";
|
||||||
|
|
28
pkgs/by-name/sp/spoofdpi/package.nix
Normal file
28
pkgs/by-name/sp/spoofdpi/package.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue