2020-03-27 08:33:21 +01:00
|
|
|
{ stdenv, fetchFromGitHub, buildGoModule }:
|
2019-11-18 03:38:12 +01:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "dnsproxy";
|
2020-06-06 07:26:27 +02:00
|
|
|
version = "0.29.0";
|
2019-11-18 03:38:12 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AdguardTeam";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-06-06 07:26:27 +02:00
|
|
|
sha256 = "164l97x1g20a61jkb2dwwmf63md3np9x2m59dri3qf22k4rl4l0d";
|
2019-11-18 03:38:12 +01:00
|
|
|
};
|
|
|
|
|
2020-05-01 03:59:00 +02:00
|
|
|
vendorSha256 = null;
|
2019-11-18 03:38:12 +01: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;
|
|
|
|
};
|
2020-05-01 03:59:00 +02:00
|
|
|
}
|