rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / obfs4 / default.nix
blobb2317ef44c2f20fbc3cc79e18a0f476a094c64a2
1 { lib, buildGoModule, fetchFromGitLab, installShellFiles }:
3 buildGoModule rec {
4   pname = "obfs4";
5   version = "0.1.0";
7   src = fetchFromGitLab {
8     domain = "gitlab.torproject.org";
9     group = "tpo";
10     owner = "anti-censorship/pluggable-transports";
11     # We don't use pname = lyrebird and we use the old obfs4 name as the first
12     # will collide with lyrebird Gtk3 program.
13     repo = "lyrebird";
14     rev = "lyrebird-${version}";
15     hash = "sha256-2qBSmAsaR3hfxuoR5U5UAFQAepUOEUnIGoxc/GZ5LmY=";
16   };
18   vendorHash = "sha256-O8CsvpwL9cfipl4M0BquSnG9tBrt/+i+i80OYk2mNiI=";
20   ldflags = [ "-s" "-w" ];
22   nativeBuildInputs = [ installShellFiles ];
24   postInstall = ''
25     installManPage doc/obfs4proxy.1
26     ln -s $out/share/man/man1/{obfs4proxy,lyrebird}.1
27   '';
29   meta = with lib; {
30     description = "Circumvents censorship by transforming Tor traffic between clients and bridges";
31     longDescription = ''
32       Obfs4proxy is a tool that attempts to circumvent censorship by
33       transforming the Tor traffic between the client and the bridge.
34       This way censors, who usually monitor traffic between the client
35       and the bridge, will see innocent-looking transformed traffic
36       instead of the actual Tor traffic.  obfs4proxy implements the
37       obfsucation protocols obfs2, obfs3, and obfs4.  It is written in
38       Go and is compliant with the Tor pluggable transports
39       specification, and its modular architecture allows it to support
40       multiple pluggable transports.
41     '';
42     homepage = "https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/lyrebird";
43     maintainers = with maintainers; [ thoughtpolice ];
44     mainProgram = "lyrebird";
45     changelog = "https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/lyrebird/-/raw/${src.rev}/ChangeLog";
46     license = with lib.licenses; [ bsd2 bsd3 gpl3 ];
47   };