1
0
Fork 0
alertmanager-ntfy/default.nix
Pablo Ovelleiro Corral 4c0c0bf056
initial commit
2022-11-02 14:46:55 +01:00

19 lines
480 B
Nix

with import <nixpkgs>{};
buildGoModule rec {
pname = "http2irc";
version = "0.1";
src = ./.;
vendorSha256 = "sha256-k45e6RSIl3AQdOFQysIwJP9nlYsSFeaUznVIXfbYwLA=";
subPackages = [ "." ];
meta = with lib; {
description = "Webhook reciever to annouce in IRC channels";
homepage = "https://github.com/pinpox/http2irc";
license = licenses.gpl3;
maintainers = with maintainers; [ pinpox ];
platforms = platforms.linux;
};
}