scc: init at 2.8.0

This commit is contained in:
Yann Hodique 2019-10-08 21:54:21 -07:00 committed by Jon
parent b16f6953a2
commit 1f02f7cf60
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "scc";
version = "2.8.0";
src = fetchFromGitHub {
owner = "boyter";
repo = "scc";
rev = "v${version}";
sha256 = "1g55aahr8j93jc1k2zgpnyxgp7ddn5137vjf8dafsmqp4m2qjq6g";
};
goPackagePath = "github.com/boyter/scc";
# scc has a scripts/ sub-package that's for testing.
subPackages = [ "./" ];
meta = with stdenv.lib; {
homepage = https://github.com/boyter/scc;
description = "A very fast accurate code counter with complexity calculations and COCOMO estimates written in pure Go";
maintainers = with maintainers; [ sigma ];
license = with licenses; [ unlicense /* or */ mit ];
platforms = platforms.unix;
};
}

View File

@ -10123,6 +10123,8 @@ in
sbt-extras = callPackage ../development/tools/build-managers/sbt-extras { };
scc = callPackage ../development/tools/misc/scc { };
scss-lint = callPackage ../development/tools/scss-lint { };
shadowenv = callPackage ../tools/misc/shadowenv {