mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 23:54:01 +00:00
43 lines
906 B
Nix
43 lines
906 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "dnsproxy";
|
|
version = "0.72.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AdguardTeam";
|
|
repo = "dnsproxy";
|
|
rev = "v${version}";
|
|
hash = "sha256-UJ97/oMkP01eojNfiim0ttszigyOReHEHEcMh/JvU7M=";
|
|
};
|
|
|
|
vendorHash = "sha256-zVmoIC7LZfElEgvSq7CkOi1wOCA8ot+8JfW5wTCKwc8=";
|
|
|
|
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";
|
|
};
|
|
}
|