evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / go / go-license-detector / package.nix
bloba59b55be975d8b242a43701b146f58a258451038
1 { lib, buildGoModule, fetchFromGitHub, git }:
3 buildGoModule rec {
4   pname = "go-license-detector";
5   version = "4.3.1";
7   src = fetchFromGitHub {
8     owner = "go-enry";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-S9LKXjn5dL5FETOOAk+bs7bIVdu2x7MIhfjpZuXzuLo=";
12   };
14   vendorHash = "sha256-MtQsUsFd9zQGbP7NGZ4zcSoa6O2WSWvGig0GUwCc6uM=";
16   nativeCheckInputs = [ git ];
18   meta = with lib; {
19     description = "Reliable project licenses detector";
20     homepage = "https://github.com/go-enry/go-license-detector";
21     license = licenses.asl20;
22     maintainers = [ ];
23     mainProgram = "license-detector";
24   };