Files
nixpkgs/pkgs/by-name/go/gof5/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

33 lines
829 B
Nix

{
lib,
fetchFromGitHub,
buildGoModule,
}:
buildGoModule rec {
pname = "gof5";
version = "0.1.5";
src = fetchFromGitHub {
owner = "kayrus";
repo = "gof5";
rev = "v${version}";
sha256 = "sha256-tvahwd/UBKGYOXIgGwN98P4udcf6Bqrsy9mZ/3YVkvM=";
};
vendorHash = "sha256-kTdAjNYp/qQnUhHaCD6Hn1MlMpUsWaRxTSHWSUf6Uz8=";
# 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 ];
mainProgram = "gof5";
};
}