go-license-detector: 3.1.0 -> 4.3.0
This commit is contained in:
parent
c3d4817042
commit
2b071e05f0
1 changed files with 7 additions and 7 deletions
|
@ -1,23 +1,23 @@
|
||||||
{ lib, buildGoModule, fetchFromGitHub }:
|
{ lib, buildGoModule, fetchFromGitHub, git }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "go-license-detector";
|
pname = "go-license-detector";
|
||||||
version = "3.1.0";
|
version = "4.3.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "src-d";
|
owner = "go-enry";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0ln1z3y9q5igf9djkxw05ql2hb1ijcvvz0mrbwz11cdv9xrsa4z4";
|
sha256 = "sha256-MubQpxpUCPDBVsEz4NmY8MFEoECXQtzAaZJ89vv5bDc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "0gan5l7vsq0hixxcymhhs8p07v92w60r0lhgvrr9a99nic12vmia";
|
vendorSha256 = "sha256-a9yCnGg+4f+UoHbGG8a47z2duBD3qXcAzPKnE4PQsvM=";
|
||||||
|
|
||||||
doCheck = false;
|
checkInputs = [ git ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Reliable project licenses detector";
|
description = "Reliable project licenses detector";
|
||||||
homepage = "https://github.com/src-d/go-license-detector";
|
homepage = "https://github.com/go-enry/go-license-detector";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ dtzWill ];
|
maintainers = with maintainers; [ dtzWill ];
|
||||||
mainProgram = "license-detector";
|
mainProgram = "license-detector";
|
||||||
|
|
Loading…
Reference in a new issue