Skip to content

Commit

Permalink
[Backport release-24.05] go-licence-detector: init at 0.7.0 (#347488)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Oct 9, 2024
2 parents bab3e7c + 554c88c commit afcfdf8
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/by-name/go/go-licence-detector/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:

buildGoModule rec {
pname = "go-licence-detector";
version = "0.7.0";

src = fetchFromGitHub {
owner = "elastic";
repo = "go-licence-detector";
rev = "v${version}";
hash = "sha256-43MyzEF7BZ7pcgzDvXx9SjXGHaLozmWkGWUO/yf6K98=";
};

vendorHash = "sha256-7vIP5pGFH6CbW/cJp+DiRg2jFcLFEBl8dQzUw1ogTTA=";

meta = with lib; {
description = "Detect licences in Go projects and generate documentation";
homepage = "https://github.com/elastic/go-licence-detector";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}

0 comments on commit afcfdf8

Please sign in to comment.