nixpkgs/pkgs/tools/system/runitor/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.3 KiB
Nix
Raw Normal View History

2022-06-29 21:40:11 +00:00
{ lib, buildGoModule, fetchFromGitHub, testers, runitor }:
2022-04-27 01:33:53 +00:00
buildGoModule rec {
pname = "runitor";
2022-12-03 19:06:00 +00:00
version = "1.2.0";
vendorHash = null;
2022-04-27 01:33:53 +00:00
src = fetchFromGitHub {
owner = "bdd";
repo = "runitor";
rev = "v${version}";
2022-12-03 19:06:00 +00:00
sha256 = "sha256-lL9yfiqPIIfEvjiWcG6e1NrURHJFdk4x/od/w7/i2DE=";
2022-04-27 01:33:53 +00:00
};
ldflags = [
"-s" "-w" "-X main.Version=v${version}"
];
2022-04-27 01:33:53 +00:00
passthru.tests.version = testers.testVersion {
package = runitor;
command = "runitor -version";
version = "v${version}";
};
# Unit tests require binding to local addresses for listening sockets.
__darwinAllowLocalNetworking = true;
meta = with lib; {
homepage = "https://bdd.fi/x/runitor";
description = "A command runner with healthchecks.io integration";
longDescription = ''
Runitor runs the supplied command, captures its output, and based on its exit
code reports successful or failed execution to https://healthchecks.io or your
private instance.
Healthchecks.io is a web service for monitoring periodic tasks. It's like a
dead man's switch for your cron jobs. You get alerted if they don't run on time
or terminate with a failure.
'';
license = licenses.bsd0;
maintainers = with maintainers; [ bdd ];
2023-11-27 01:17:53 +00:00
mainProgram = "runitor";
2022-04-27 01:33:53 +00:00
};
}