mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
26 lines
692 B
Nix
26 lines
692 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "scc";
|
|
version = "3.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "boyter";
|
|
repo = "scc";
|
|
rev = "v${version}";
|
|
hash = "sha256-ZQIOV7TznaIrgSUgc5Pyc4sz2d5MFO+RgczQq3gZevk=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|