about summary refs log tree commit diff
path: root/tools/git-blame-stats/default.nix
blob: 8897b67c4b9bdc0afeb4e38a276a465bb630fec0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ pkgs, ... }:

pkgs.buildGoModule rec {
  name = "git-blame-stats";
  src = ./.;
  vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
  nativeBuildInputs = with pkgs; [ go ];

  meta = with pkgs.lib; {
    description = "CLI to reports git blame statistics per author.";
    license = licenses.mit;
    platforms = platforms.linux;
    maintainers = [ ];
  };
}