mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
gocyclo: init unstable at 2015-02-08
This commit is contained in:
parent
f10fcf202b
commit
1efe4d9005
28
pkgs/development/tools/gocyclo/default.nix
Normal file
28
pkgs/development/tools/gocyclo/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ buildGoPackage
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "gocyclo-unstable-${version}";
|
||||
version = "2015-02-08";
|
||||
rev = "aa8f8b160214d8dfccfe3e17e578dd0fcc6fede7";
|
||||
|
||||
goPackagePath = "github.com/alecthomas/gocyclo";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit rev;
|
||||
|
||||
owner = "alecthomas";
|
||||
repo = "gocyclo";
|
||||
sha256 = "094rj97q38j53lmn2scshrg8kws8c542yq5apih1ahm9wdkv8pxr";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Calculate cyclomatic complexities of functions in Go source code.";
|
||||
homepage = https://github.com/alecthomas/gocyclo;
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ kalbasit ];
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
}
|
@ -14739,6 +14739,8 @@ with pkgs;
|
||||
|
||||
golangci-lint = callPackage ../development/tools/golangci-lint { };
|
||||
|
||||
gocyclo = callPackage ../development/tools/gocyclo { };
|
||||
|
||||
godef = callPackage ../development/tools/godef { };
|
||||
|
||||
gopkgs = callPackage ../development/tools/gopkgs { };
|
||||
|
Loading…
Reference in New Issue
Block a user