2024-05-12 04:21:29 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildGoModule,
|
|
|
|
fetchFromGitHub,
|
|
|
|
}:
|
2020-09-07 05:19:22 +00:00
|
|
|
buildGoModule rec {
|
2019-10-09 04:54:21 +00:00
|
|
|
pname = "scc";
|
2024-05-08 23:51:02 +00:00
|
|
|
version = "3.3.3";
|
2019-10-09 04:54:21 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "boyter";
|
|
|
|
repo = "scc";
|
|
|
|
rev = "v${version}";
|
2024-05-08 23:51:02 +00:00
|
|
|
hash = "sha256-YbTPRUxkSKYZwOSK7XFr6wHqACp0rkFyzQCMcAFlZ7Y=";
|
2019-10-09 04:54:21 +00:00
|
|
|
};
|
|
|
|
|
2023-09-21 17:11:11 +00:00
|
|
|
vendorHash = null;
|
2019-10-09 04:54:21 +00:00
|
|
|
|
|
|
|
# scc has a scripts/ sub-package that's for testing.
|
2020-09-07 05:19:22 +00:00
|
|
|
excludedPackages = [ "scripts" ];
|
2019-10-09 04:54:21 +00:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2019-12-19 14:18:27 +00:00
|
|
|
homepage = "https://github.com/boyter/scc";
|
2019-10-09 04:54:21 +00:00
|
|
|
description = "A very fast accurate code counter with complexity calculations and COCOMO estimates written in pure Go";
|
2024-05-12 04:21:29 +00:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
sigma
|
|
|
|
Br1ght0ne
|
|
|
|
];
|
|
|
|
license = with licenses; [
|
|
|
|
unlicense
|
|
|
|
# or
|
|
|
|
mit
|
|
|
|
];
|
2019-10-09 04:54:21 +00:00
|
|
|
};
|
|
|
|
}
|