Skip to content

Commit

Permalink
go-dnscollector: init at 1.1.0
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Palmer <shift@someone.section.me>
  • Loading branch information
shift committed Oct 25, 2024
1 parent 7eabf55 commit a5d0a7e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/by-name/go/go-dnscollector/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
pname = "go-dnscollector";
version = "1.1.0";

src = fetchFromGitHub {
owner = "dmachard";
repo = "go-dnscollector";
rev = "v${version}";
sha256 = "sha256-+EE9miEm1sHxTHcQ+Zmnj5ljSisKtds9L+SLIvgIfb4="; # Replace with the actual SHA256 of the repo
};

# Set Go module dependencies
vendorHash = "sha256-Njv8EGPS45NpCs0+poBxVGWLHhH+mSZuI80kIpsijDQ=";
# Specify any subpackages if necessary
subPackages = [ "." ];

meta = with lib; {
description = "Ingesting, pipelining, and enhancing your DNS logs with usage indicators, security analysis, and additional metadata.";
homepage = "https://github.com/dmachard/go-dnscollector";
license = licenses.mit;
maintainers = with maintainers; [ shift ];
};
}

0 comments on commit a5d0a7e

Please sign in to comment.