alertmanager-ntfy/default.nix

19 lines
494 B
Nix
Raw Normal View History

2024-09-09 19:16:27 +00:00
{ pkgs }:
2022-11-02 13:16:19 +00:00
2024-09-09 19:16:27 +00:00
pkgs.buildGoModule rec {
pname = "alertmanager-ntfy";
version = "1.0.0";
2022-11-02 13:16:19 +00:00
2024-09-09 19:16:27 +00:00
src = ./src;
vendorHash = "sha256-8nbWcawb/SYL5vLj5DUrDO51L0l+qPE0JOrkQJdre00=";
subPackages = [ "."];
2022-11-02 13:16:19 +00:00
2024-08-11 19:02:39 +00:00
meta = with pkgs.lib; {
description = "Webhook receiver to announce in ntfy-sh";
homepage = "https://code.252.no/tommy/alertmanager-ntfy";
license = pkgs.lib.licenses.gpl3;
maintainers = [ pkgs.lib.maintainers."tommy@252.no" ];
platforms = pkgs.lib.platforms.linux;
};
2024-09-09 19:16:27 +00:00
}