nixpkgs/pkgs/by-name/sc/scc/package.nix

36 lines
732 B
Nix
Raw Normal View History

2024-05-12 04:21:29 +00:00
{
lib,
buildGoModule,
fetchFromGitHub,
}:
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
};
vendorHash = null;
2019-10-09 04:54:21 +00:00
# scc has a scripts/ sub-package that's for testing.
excludedPackages = [ "scripts" ];
2019-10-09 04:54:21 +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
};
}