biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / misc / go-license-detector / default.nix
blobcbef7ae0d9da80bdf783a4bc570a22b746373fff
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 = with maintainers; [ dtzWill ];
23     mainProgram = "license-detector";
24   };