nixpkgs/pkgs/tools/networking/dnsproxy/default.nix

23 lines
580 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, buildGoModule }:
2019-11-18 02:38:12 +00:00
buildGoModule rec {
pname = "dnsproxy";
2020-06-06 05:26:27 +00:00
version = "0.29.0";
2019-11-18 02:38:12 +00:00
src = fetchFromGitHub {
owner = "AdguardTeam";
repo = pname;
rev = "v${version}";
2020-06-06 05:26:27 +00:00
sha256 = "164l97x1g20a61jkb2dwwmf63md3np9x2m59dri3qf22k4rl4l0d";
2019-11-18 02:38:12 +00:00
};
vendorSha256 = null;
2019-11-18 02:38:12 +00:00
meta = with stdenv.lib; {
description = "Simple DNS proxy with DoH, DoT, and DNSCrypt support";
homepage = "https://github.com/AdguardTeam/dnsproxy";
license = licenses.gpl3;
maintainers = with maintainers; [ contrun ];
platforms = platforms.all;
};
}