2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-10-09 04:54:21 +00:00
|
|
|
|
2020-09-07 05:19:22 +00:00
|
|
|
buildGoModule rec {
|
2019-10-09 04:54:21 +00:00
|
|
|
pname = "scc";
|
2021-02-25 16:48:11 +00:00
|
|
|
version = "3.0.0";
|
2019-10-09 04:54:21 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "boyter";
|
|
|
|
repo = "scc";
|
|
|
|
rev = "v${version}";
|
2021-02-25 16:48:11 +00:00
|
|
|
sha256 = "sha256-G5LYOtAUnu82cgDdtYzcfVx/WFg9/HvFQAlQtd6GaDE=";
|
2019-10-09 04:54:21 +00:00
|
|
|
};
|
|
|
|
|
2020-09-07 05:19:22 +00:00
|
|
|
vendorSha256 = 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";
|
2020-11-17 11:02:06 +00:00
|
|
|
maintainers = with maintainers; [ sigma Br1ght0ne ];
|
2019-10-09 04:54:21 +00:00
|
|
|
license = with licenses; [ unlicense /* or */ mit ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|