mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
23 lines
580 B
Nix
23 lines
580 B
Nix
{ stdenv, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "dnsproxy";
|
|
version = "0.29.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AdguardTeam";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "164l97x1g20a61jkb2dwwmf63md3np9x2m59dri3qf22k4rl4l0d";
|
|
};
|
|
|
|
vendorSha256 = null;
|
|
|
|
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;
|
|
};
|
|
} |