Commit 249b23be authored by Vincent Palmer's avatar Vincent Palmer
Browse files

maintainers: add shift

parent a5d0a7e3
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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";
+7 −5
Original line number Diff line number Diff line
{ 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 ];
  };
}