1
0
Fork 0
alertmanager-ntfy/default.nix

19 lines
520 B
Nix

with import <nixpkgs>{};
buildGoModule rec {
pname = "alertmanager-ntfy";
version = "1.0.0";
src = ./src;
vendorHash = "sha256-Ezt1HDxGQ7DePF90HgHKkH7v365ICFdnfcWJipLhCwQ=";
subPackages = [ "." ];
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;
};
}