forked from mirrors/nixpkgs
obfs4: init at 0.0.10
This commit is contained in:
parent
4a753f75db
commit
b775493d23
21
pkgs/tools/networking/obfs4/default.nix
Normal file
21
pkgs/tools/networking/obfs4/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ lib, fetchgit, buildGoModule }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "obfs4";
|
||||
version = "0.0.10";
|
||||
|
||||
src = fetchgit {
|
||||
url = meta.repositories.git;
|
||||
rev = "refs/tags/${pname}proxy-${version}";
|
||||
sha256 = "05aqmw8x8s0yqyqmdj5zcsq06gsbcmrlcd52gaqm20m1pg9503ad";
|
||||
};
|
||||
|
||||
modSha256 = "150kg22kznrdj5icjxk3qd70g7wpq8zd2zklw1y2fgvrggw8zvyv";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A pluggable transport proxy";
|
||||
homepage = https://www.torproject.org/projects/obfsproxy;
|
||||
repositories.git = https://git.torproject.org/pluggable-transports/obfs4.git;
|
||||
maintainers = with maintainers; [ phreedom thoughtpolice ];
|
||||
};
|
||||
}
|
|
@ -4785,6 +4785,8 @@ in
|
|||
|
||||
obexd = callPackage ../tools/bluetooth/obexd { };
|
||||
|
||||
obfs4 = callPackage ../tools/networking/obfs4 { };
|
||||
|
||||
oci-image-tool = callPackage ../tools/misc/oci-image-tool { };
|
||||
|
||||
ocproxy = callPackage ../tools/networking/ocproxy { };
|
||||
|
|
Loading…
Reference in a new issue