159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
26 lines
617 B
Nix
26 lines
617 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gatus";
|
|
version = "5.12.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TwiN";
|
|
repo = "gatus";
|
|
rev = "v${version}";
|
|
hash = "sha256-K9jEepcxfV1sAC3YKqkvDA9HHlobksJPwsAcqD3gcmQ=";
|
|
};
|
|
|
|
vendorHash = "sha256-jRRFj4NdxsjC9CM+Vm5+gV0ZMbz45YtGyE3FaGaGp28=";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
meta = with lib;
|
|
{
|
|
description = "Automated developer-oriented status page";
|
|
homepage = "https://gatus.io";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ undefined-moe ];
|
|
mainProgram = "gatus";
|
|
};
|
|
}
|