diff options
Diffstat (limited to 'tools/gerrit-hook/default.nix')
| -rw-r--r-- | tools/gerrit-hook/default.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/gerrit-hook/default.nix b/tools/gerrit-hook/default.nix new file mode 100644 index 0000000..c0667ae --- /dev/null +++ b/tools/gerrit-hook/default.nix @@ -0,0 +1,16 @@ +{ pkgs, ... }: + +pkgs.buildGoModule rec { + name = "gerrit-hook"; + src = ./.; + subPackages = [ "." ]; + vendorSha256 = null; + + meta = with pkgs.lib; { + description = "hooks for gerrit"; + homepage = "https://golang.fcuny.net"; + license = licenses.mit; + platforms = platforms.linux; + maintainers = [ ]; + }; +} |
