Unverified Commit 5365b3cd authored by undefined's avatar undefined
Browse files

gatus: 5.19.0 -> 5.23.2

parent 2a54616c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -105,7 +105,8 @@ in
  config = mkIf cfg.enable {
    systemd.services.gatus = {
      description = "Automated developer-oriented status page";
      after = [ "network.target" ];
      after = [ "network-online.target" ];
      requires = [ "network-online.target" ];
      wantedBy = [ "multi-user.target" ];

      serviceConfig = {
+1 −1
Original line number Diff line number Diff line
@@ -29,6 +29,6 @@

  testScript = ''
    machine.wait_for_unit("gatus.service")
    machine.succeed("curl -s http://localhost:8080/metrics | grep go_info")
    machine.wait_until_succeeds("curl -s http://localhost:8080/metrics | grep go_info", timeout=60)
  '';
}
+3 −3
Original line number Diff line number Diff line
@@ -7,16 +7,16 @@

buildGoModule rec {
  pname = "gatus";
  version = "5.19.0";
  version = "5.23.2";

  src = fetchFromGitHub {
    owner = "TwiN";
    repo = "gatus";
    rev = "v${version}";
    hash = "sha256-Jw7OdFGSZgxy52fICURc313ONsmI9Qlsf75aS0LUB9s=";
    hash = "sha256-b/UQwwyspOKrW9mRoq0zJZ41lNLM+XvGFlpxz+9ZMco=";
  };

  vendorHash = "sha256-CofmAYsRp0bya+q/eFJkWV9tGfhg37UxDFR9vpCKYls=";
  vendorHash = "sha256-jMNsd7AiWG8vhUW9cLs5Ha2wmdw9SHjSDXIypvCKYqk=";

  subPackages = [ "." ];