go-license-detector: init at 3.0.2
This commit is contained in:
parent
728da4bd0b
commit
3991c60b37
2 changed files with 23 additions and 0 deletions
22
pkgs/development/tools/misc/go-license-detector/default.nix
Normal file
22
pkgs/development/tools/misc/go-license-detector/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -25947,4 +25947,5 @@ in
|
|||
|
||||
quartus-prime-lite = callPackage ../applications/editors/quartus-prime {};
|
||||
|
||||
go-license-detector = callPackage ../development/tools/misc/go-license-detector { };
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue