biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / cl / cloak-pt / package.nix
blobbcd3441bb43fe6a3b1d8295634818f4ab2445ca3
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
6 let
7   version = "2.10.0";
8 in
9 buildGoModule {
10   pname = "Cloak";
11   inherit version;
13   src = fetchFromGitHub {
14     owner = "cbeuw";
15     repo = "Cloak";
16     rev = "v${version}";
17     hash = "sha256-JbwjsLVOxQc6v47+6rG2f1JLS8ieZI6jYV/twtaVx9M=";
18   };
20   vendorHash = "sha256-0veClhg9GujI5VrHVzAevIXkjqtZ6r7RGTP2QeWbO2w=";
22   doCheck = false;
24   ldflags = [ "-X main.version=${version}" ];
25   meta = {
26     homepage = "https://github.com/cbeuw/Cloak/";
27     description = "Pluggable transport that enhances traditional proxy tools like OpenVPN to evade sophisticated censorship and data discrimination";
28     longDescription = ''
29       Cloak is not a standalone proxy program. Rather, it works by masquerading proxied traffic as normal web browsing activities.
31       To any third party observer, a host running Cloak server is indistinguishable from an innocent web server.
32     '';
33     license = lib.licenses.gpl3;
34     maintainers = with lib.maintainers; [ bananad3v ];
35   };