nixpkgs-suyu/pkgs/development/tools/misc/scc/default.nix

27 lines
752 B
Nix
Raw Normal View History

2019-10-09 06:54:21 +02:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "scc";
2020-01-30 02:42:48 +01:00
version = "2.11.0";
2019-10-09 06:54:21 +02:00
src = fetchFromGitHub {
owner = "boyter";
repo = "scc";
rev = "v${version}";
2020-01-30 02:42:48 +01:00
sha256 = "1wk6s9ga9rkywgqys960s6fz4agwzh3ac2l6cpcr7kca4379s28k";
2019-10-09 06:54:21 +02:00
};
goPackagePath = "github.com/boyter/scc";
# scc has a scripts/ sub-package that's for testing.
subPackages = [ "./" ];
meta = with stdenv.lib; {
2019-12-19 15:18:27 +01:00
homepage = "https://github.com/boyter/scc";
2019-10-09 06:54:21 +02:00
description = "A very fast accurate code counter with complexity calculations and COCOMO estimates written in pure Go";
2019-12-19 15:18:51 +01:00
maintainers = with maintainers; [ sigma filalex77 ];
2019-10-09 06:54:21 +02:00
license = with licenses; [ unlicense /* or */ mit ];
platforms = platforms.unix;
};
}