Merge pull request #72141 from dtzWill/feature/go-license-detector-3.0.1

go-license-detector: init at 3.0.2
This commit is contained in:
Will Dietz 2020-02-13 00:16:55 -06:00 committed by GitHub
commit ed54e4fca1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "go-license-detector";
version = "3.0.2";
src = fetchFromGitHub {
owner = "src-d";
repo = pname;
rev = "v${version}";
sha256 = "0gp7na2hqn5crr5x4khllsq7ka9h7rx8b4y10yzxmi0wpmxr53sw";
};
modSha256 = "163f1kiy7kqrnaazb8ydaaiz57lv30jyjkvv6i7pczvcg9yfhmdb";
meta = with lib; {
description = "Reliable project licenses detector";
homepage = "https://github.com/src-d/go-license-detector";
license = licenses.asl20;
maintainers = with maintainers; [ dtzWill ];
};
}

View File

@ -25947,4 +25947,5 @@ in
quartus-prime-lite = callPackage ../applications/editors/quartus-prime {};
go-license-detector = callPackage ../development/tools/misc/go-license-detector { };
}