aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/tools/misc/scc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/tools/misc/scc/default.nix')
-rw-r--r--nixpkgs/pkgs/development/tools/misc/scc/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/tools/misc/scc/default.nix b/nixpkgs/pkgs/development/tools/misc/scc/default.nix
new file mode 100644
index 00000000000..2d5d94813ca
--- /dev/null
+++ b/nixpkgs/pkgs/development/tools/misc/scc/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+ pname = "scc";
+ version = "2.8.0";
+
+ src = fetchFromGitHub {
+ owner = "boyter";
+ repo = "scc";
+ rev = "v${version}";
+ sha256 = "1g55aahr8j93jc1k2zgpnyxgp7ddn5137vjf8dafsmqp4m2qjq6g";
+ };
+
+ goPackagePath = "github.com/boyter/scc";
+
+ # scc has a scripts/ sub-package that's for testing.
+ subPackages = [ "./" ];
+
+ meta = with stdenv.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 ];
+ license = with licenses; [ unlicense /* or */ mit ];
+ platforms = platforms.unix;
+ };
+}