{ pkgs, buildGoModule, ... }: 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 = [ ]; }; }