3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/dnsproxy/default.nix

25 lines
570 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, buildGoModule }:
2019-11-18 02:38:12 +00:00
buildGoModule rec {
pname = "dnsproxy";
2020-12-10 14:39:03 +00:00
version = "0.33.3";
2019-11-18 02:38:12 +00:00
src = fetchFromGitHub {
owner = "AdguardTeam";
repo = pname;
rev = "v${version}";
2020-12-10 14:39:03 +00:00
sha256 = "0c7hqsb53711032svicr069gh7faacnsj2v36pj7srng266vk78p";
2019-11-18 02:38:12 +00:00
};
vendorSha256 = null;
2019-11-18 02:38:12 +00:00
doCheck = false;
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 ];
};
}