nixpkgs/pkgs/development/tools/license-scanner/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
766 B
Nix
Raw Normal View History

2023-04-04 13:15:36 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "license-scanner";
2023-12-16 11:58:54 +00:00
version = "0.11.0";
2023-04-04 13:15:36 +00:00
src = fetchFromGitHub {
owner = "CycloneDX";
repo = "license-scanner";
rev = "refs/tags/v${version}";
2023-12-16 11:58:54 +00:00
hash = "sha256-2KUaVDAZxMwZ3AAMEUmRiuvenPSFliUp6rZCZrVTDps=";
2023-04-04 13:15:36 +00:00
};
vendorHash = "sha256-7xa2tdCDCXkOZCLL8YPtO7i1VqD61Mow7un0690I8mM=";
meta = with lib; {
description = "Utility that provides an API and CLI to identify licenses and legal terms";
mainProgram = "license-scanner";
2023-04-04 13:15:36 +00:00
homepage = "https://github.com/CycloneDX/license-scanner";
changelog = "https://github.com/CycloneDX/license-scanner/blob/${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}