nixpkgs/pkgs/development/tools/misc/go-license-detector/default.nix

25 lines
667 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub, Security }:
2020-02-13 03:35:11 +01:00
buildGoModule rec {
pname = "go-license-detector";
2020-03-04 05:29:32 +01:00
version = "3.1.0";
2020-02-13 03:35:11 +01:00
src = fetchFromGitHub {
owner = "src-d";
repo = pname;
rev = "v${version}";
2020-03-04 05:29:32 +01:00
sha256 = "0ln1z3y9q5igf9djkxw05ql2hb1ijcvvz0mrbwz11cdv9xrsa4z4";
2020-02-13 03:35:11 +01:00
};
modSha256 = "163f1kiy7kqrnaazb8ydaaiz57lv30jyjkvv6i7pczvcg9yfhmdb";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
meta = with stdenv.lib; {
2020-02-13 03:35:11 +01:00
description = "Reliable project licenses detector";
homepage = "https://github.com/src-d/go-license-detector";
license = licenses.asl20;
maintainers = with maintainers; [ dtzWill ];
};
}