summary refs log blame commit diff
path: root/pkgs/applications/version-management/git-sizer/default.nix
blob: a0d7382de3419b07f8a3750065b45c5512bc66a4 (plain) (tree)






















                                                                      
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "git-sizer";
  name = "${pname}-${version}";
  version = "1.0.0";

  goPackagePath = "github.com/github/git-sizer";

  src = fetchFromGitHub {
    owner = "github";
    repo = pname;
    rev = "v${version}";
    sha256 = "11rvqpsyl41ph0fgm62k5q2p33zgnwj1jd91rd4lkaarpcd1sg5h";
  };

  meta = with lib; {
    description = "Compute various size metrics for a Git repository";
    license = licenses.mit;
    maintainers = with maintainers; [ matthewbauer ];
    platforms = platforms.all;
  };
}