about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/scc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/misc/scc/default.nix')
-rw-r--r--pkgs/development/tools/misc/scc/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/development/tools/misc/scc/default.nix b/pkgs/development/tools/misc/scc/default.nix
deleted file mode 100644
index f67760c45586e..0000000000000
--- a/pkgs/development/tools/misc/scc/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ lib, buildGoModule, fetchFromGitHub }:
-
-buildGoModule rec {
-  pname = "scc";
-  version = "3.3.0";
-
-  src = fetchFromGitHub {
-    owner = "boyter";
-    repo = "scc";
-    rev = "v${version}";
-    hash = "sha256-WZWFgbC/Yz+KNYK+bjm+rlf3MJVPMbL+7hyFOSaSewA=";
-  };
-
-  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 ];
-  };
-}