nixpkgs/pkgs/by-name/sc/scc/package.nix
2024-05-12 00:21:29 -04:00

36 lines
732 B
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "scc";
version = "3.3.3";
src = fetchFromGitHub {
owner = "boyter";
repo = "scc";
rev = "v${version}";
hash = "sha256-YbTPRUxkSKYZwOSK7XFr6wHqACp0rkFyzQCMcAFlZ7Y=";
};
vendorHash = null;
# scc has a scripts/ sub-package that's for testing.
excludedPackages = [ "scripts" ];
meta = with 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
Br1ght0ne
];
license = with licenses; [
unlicense
# or
mit
];
};
}