meek: init at 0.38.0

This commit is contained in:
Doron Behar 2023-06-18 17:59:09 +03:00
parent 8fe6cacd95
commit 53cacfbc49
2 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,47 @@
{ lib
, buildGoModule
, fetchFromGitLab
, installShellFiles
}:
buildGoModule rec {
pname = "meek";
version = "0.38.0";
src = fetchFromGitLab {
domain = "gitlab.torproject.org";
group = "tpo";
owner = "anti-censorship/pluggable-transports";
repo = "meek";
rev = "v${version}";
sha256 = "sha256-zmIRXrHWrEzR+RcX/gkuqw2oBmyGoXDQ45ZjA4vwGSs=";
};
vendorHash = "sha256-eAO6vEPKqWWZkmJXmOCeTa7TE8opynYvvxzPDSe9p+I=";
subPackages = [
"meek-client"
"meek-server"
];
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installManPage doc/meek-client.1
installManPage doc/meek-server.1
'';
meta = with lib; {
description = "Blocking-resistant pluggable transport for Tor";
longDescription = ''
meek is a blocking-resistant pluggable transport for Tor. It encodes a
data stream as a sequence of HTTPS requests and responses. Requests are
reflected through a hard-to-block third-party web server in order to
avoid talking directly to a Tor bridge. HTTPS encryption hides
fingerprintable byte patterns in Tor traffic.
'';
homepage = "https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/meek";
maintainers = with maintainers; [ doronbehar ];
license = licenses.cc0;
};
}

View file

@ -31561,6 +31561,8 @@ with pkgs;
marker = callPackage ../applications/editors/marker { };
meek = callPackage ../tools/networking/meek { };
meerk40t = callPackage ../applications/misc/meerk40t { };
meerk40t-camera = callPackage ../applications/misc/meerk40t/camera.nix { };