bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
35 lines
730 B
Nix
35 lines
730 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "scc";
|
|
version = "3.3.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "boyter";
|
|
repo = "scc";
|
|
rev = "v${version}";
|
|
hash = "sha256-mKKUFW01WVBNfy6z4v3y+yu9DJuLZkQSWpekzmVuMn0=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
# scc has a scripts/ sub-package that's for testing.
|
|
excludedPackages = [ "scripts" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/boyter/scc";
|
|
description = "Very fast accurate code counter with complexity calculations and COCOMO estimates written in pure Go";
|
|
maintainers = with maintainers; [
|
|
sigma
|
|
Br1ght0ne
|
|
];
|
|
license = with licenses; [
|
|
unlicense
|
|
# or
|
|
mit
|
|
];
|
|
};
|
|
}
|