mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 11:05:14 +00:00
gof5: init at 0.1.4 (#169422)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
60999ffd1b
commit
494ad97836
30
pkgs/tools/networking/gof5/default.nix
Normal file
30
pkgs/tools/networking/gof5/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildGoModule
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "gof5";
|
||||
version = "0.1.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kayrus";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "10qh7rj8s540ghjdvymly53vny3n0qd0z0ixy24n026jjhgjvnpl";
|
||||
};
|
||||
|
||||
vendorSha256 = null;
|
||||
|
||||
# The tests are broken and apparently you need to uncomment some lines in the
|
||||
# code in order for it to work.
|
||||
# See: https://github.com/kayrus/gof5/blob/674485bdf5a0eb2ab57879a32a2cb4bab8d5d44c/pkg/client/http.go#L172-L174
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Open Source F5 BIG-IP VPN client";
|
||||
homepage = "https://github.com/kayrus/gof5";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ leixb ];
|
||||
};
|
||||
}
|
@ -1137,6 +1137,8 @@ with pkgs;
|
||||
|
||||
gobgp = callPackage ../tools/networking/gobgp { };
|
||||
|
||||
gof5 = callPackage ../tools/networking/gof5 { };
|
||||
|
||||
goflow = callPackage ../tools/networking/goflow { };
|
||||
|
||||
gofu = callPackage ../applications/misc/gofu { };
|
||||
|
Loading…
Reference in New Issue
Block a user