python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / gof5 / default.nix
blob9b437ee49ee6d5c63aaa523eae551c96bb83c17e
1 { lib
2 , fetchFromGitHub
3 , buildGoModule
4 }:
6 buildGoModule rec {
7   pname = "gof5";
8   version = "0.1.4";
10   src = fetchFromGitHub {
11     owner = "kayrus";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "10qh7rj8s540ghjdvymly53vny3n0qd0z0ixy24n026jjhgjvnpl";
15   };
17   vendorSha256 = null;
19   # The tests are broken and apparently you need to uncomment some lines in the
20   # code in order for it to work.
21   # See: https://github.com/kayrus/gof5/blob/674485bdf5a0eb2ab57879a32a2cb4bab8d5d44c/pkg/client/http.go#L172-L174
22   doCheck = false;
24   meta = with lib; {
25     description = "Open Source F5 BIG-IP VPN client";
26     homepage = "https://github.com/kayrus/gof5";
27     license = licenses.asl20;
28     maintainers = with maintainers; [ leixb ];
29   };