fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
30 lines
865 B
Nix
30 lines
865 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "dnsproxy";
|
|
version = "0.71.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AdguardTeam";
|
|
repo = "dnsproxy";
|
|
rev = "v${version}";
|
|
hash = "sha256-fsJWyb3YFmTeLf1qbO42RTldiEv3MeXyrySywGmIg5A=";
|
|
};
|
|
|
|
vendorHash = "sha256-oINdRXLtfoCOpZ+n4HAkPtXyKen4m9VaDz1ggiEzehc=";
|
|
|
|
ldflags = [ "-s" "-w" "-X" "github.com/AdguardTeam/dnsproxy/internal/version.version=${version}" ];
|
|
|
|
# Development tool dependencies; not part of the main project
|
|
excludedPackages = [ "internal/tools" ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Simple DNS proxy with DoH, DoT, and DNSCrypt support";
|
|
homepage = "https://github.com/AdguardTeam/dnsproxy";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ contrun diogotcorreia ];
|
|
mainProgram = "dnsproxy";
|
|
};
|
|
}
|