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

25 lines
559 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule }:
2019-11-18 02:38:12 +00:00
buildGoModule rec {
pname = "dnsproxy";
2021-07-24 16:50:56 +00:00
version = "0.39.0";
2019-11-18 02:38:12 +00:00
src = fetchFromGitHub {
owner = "AdguardTeam";
repo = pname;
rev = "v${version}";
2021-07-24 16:50:56 +00:00
sha256 = "sha256-rHU07rh8wZPaaxZmXVBu4tpt02Jq7Yu//dwWeVDUpw4=";
2019-11-18 02:38:12 +00:00
};
vendorSha256 = null;
2019-11-18 02:38:12 +00:00
doCheck = false;
meta = with lib; {
2019-11-18 02:38:12 +00:00
description = "Simple DNS proxy with DoH, DoT, and DNSCrypt support";
homepage = "https://github.com/AdguardTeam/dnsproxy";
license = licenses.gpl3;
maintainers = with maintainers; [ contrun ];
};
}