1
0
Fork 0
alertmanager-ntfy/default.nix

20 lines
520 B
Nix
Raw Normal View History

2022-11-02 13:16:19 +00:00
with import <nixpkgs>{};
buildGoModule rec {
pname = "alertmanager-ntfy";
2024-08-11 19:02:39 +00:00
version = "1.0.0";
2022-11-02 13:16:19 +00:00
2024-08-11 19:02:39 +00:00
src = ./src;
vendorHash = "sha256-Ezt1HDxGQ7DePF90HgHKkH7v365ICFdnfcWJipLhCwQ=";
2022-11-02 13:16:19 +00:00
subPackages = [ "." ];
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;
};
2022-11-02 13:16:19 +00:00
}