go-license-detector: init at 3.0.2

This commit is contained in:
Will Dietz 2020-02-12 20:35:11 -06:00
parent 728da4bd0b
commit 3991c60b37
No known key found for this signature in database
GPG key ID: EBB0EA4124809D02
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 { };
}