scc: move to by-name

This commit is contained in:
uncenter 2024-05-12 00:21:29 -04:00
parent 25e9a6d07d
commit a01cf4d989
No known key found for this signature in database
2 changed files with 14 additions and 6 deletions

View File

@ -1,5 +1,8 @@
{ lib, buildGoModule, fetchFromGitHub }:
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "scc";
version = "3.3.3";
@ -19,7 +22,14 @@ buildGoModule rec {
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 ];
maintainers = with maintainers; [
sigma
Br1ght0ne
];
license = with licenses; [
unlicense
# or
mit
];
};
}

View File

@ -19528,8 +19528,6 @@ with pkgs;
scala-cli = callPackage ../development/tools/build-managers/scala-cli { };
scc = callPackage ../development/tools/misc/scc { };
scss-lint = callPackage ../development/tools/scss-lint { };
segger-ozone = callPackage ../development/tools/misc/segger-ozone { };