This is a listener for gerrit events, sent by their "webhooks" plugin, as well as a NixOS module to deploy it. Issue: https://git.snix.dev/snix/snix/issues/74 Change-Id: I65c5c5a991e6b1f4f330b3439c8a25aec3f1b484 Reviewed-on: https://cl.snix.dev/c/snix/+/30526 Reviewed-by: Ryan Lahfa <ryan@lahfa.xyz> Tested-by: besadii Autosubmit: Florian Klink <flokli@flokli.de>
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			291 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			291 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { pkgs, lib, ... }:
 | |
| 
 | |
| pkgs.buildGoModule {
 | |
|   name = "gerrit-webhook-to-irccat";
 | |
|   src = lib.fileset.toSource {
 | |
|     root = ./.;
 | |
|     fileset = lib.fileset.unions [
 | |
|       ./main.go
 | |
|       ./go.mod
 | |
|       ./go.sum
 | |
|     ];
 | |
|   };
 | |
|   vendorHash = "sha256-x5ldt3KWL6ri5UqbKFXN717R4JVTIFZyn5DsgGi/RY4=";
 | |
| }
 |