about summary refs log tree commit diff
path: root/tools/gerrit-hook/default.nix
blob: c0667ae0a020e3531685723afc4591fd1d85f94f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 = [ ];
  };
}