1
0
Fork 0
alertmanager-ntfy/default.nix

20 lines
517 B
Nix
Raw Normal View History

2022-11-02 13:16:19 +00:00
with import <nixpkgs>{};
buildGoModule rec {
2024-08-11 19:02:39 +00:00
pname = "websocket2ntfy";
version = "1.0.0";
2022-11-02 13:16:19 +00:00
2024-08-11 19:02:39 +00:00
src = ./src;
2024-02-04 22:51:34 +00:00
vendorHash = "sha256-k45e6RSIl3AQdOFQysIwJP9nlYsSFeaUznVIXfbYwLA=";
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
}