{ lib, buildGoModule, fetchFromGitHub, nixosTests, }: buildGoModule rec { pname = "gatus"; version = "5.13.1"; src = fetchFromGitHub { owner = "TwiN"; repo = "gatus"; rev = "v${version}"; hash = "sha256-OY8f4FGlWeE5Jg4ESnVGo/oiTBVavBSXdGKB+uceC7U="; }; vendorHash = "sha256-FAlf+tGI3ssugHf8PsNc2Fb+rH8MqgS3BWXaee+khZw="; subPackages = [ "." ]; passthru.tests = { inherit (nixosTests) gatus; }; meta = with lib; { description = "Automated developer-oriented status page"; homepage = "https://gatus.io"; license = licenses.asl20; maintainers = with maintainers; [ undefined-moe ]; mainProgram = "gatus"; }; }