maintainers: add shift

Signed-off-by: Vincent Palmer <shift@someone.section.me>
This commit is contained in:
Vincent Palmer 2024-10-25 16:48:27 +02:00
parent a5d0a7e390
commit 249b23be31
2 changed files with 13 additions and 5 deletions

View File

@ -19721,6 +19721,12 @@
github = "shhht";
githubId = 118352823;
};
shift = {
name = "Vincent Palmer";
email = "shift@someone.section.me";
github = "shift";
githubId = 1653;
};
shikanime = {
name = "William Phetsinorath";
email = "deva.shikanime@protonmail.com";

View File

@ -1,4 +1,8 @@
{ lib, buildGoModule, fetchFromGitHub }:
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "go-dnscollector";
@ -8,12 +12,11 @@ buildGoModule rec {
owner = "dmachard";
repo = "go-dnscollector";
rev = "v${version}";
sha256 = "sha256-+EE9miEm1sHxTHcQ+Zmnj5ljSisKtds9L+SLIvgIfb4="; # Replace with the actual SHA256 of the repo
sha256 = "sha256-+EE9miEm1sHxTHcQ+Zmnj5ljSisKtds9L+SLIvgIfb4=";
};
# Set Go module dependencies
vendorHash = "sha256-Njv8EGPS45NpCs0+poBxVGWLHhH+mSZuI80kIpsijDQ=";
# Specify any subpackages if necessary
subPackages = [ "." ];
meta = with lib; {
@ -23,4 +26,3 @@ buildGoModule rec {
maintainers = with maintainers; [ shift ];
};
}