mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
Merge pull request #73107 from contrun/init-dnsproxy
dnsproxy: init at 0.20.0
This commit is contained in:
commit
5de728659b
@ -1405,6 +1405,12 @@
|
||||
githubId = 1740337;
|
||||
name = "Chris Ostrouchov";
|
||||
};
|
||||
contrun = {
|
||||
email = "uuuuuu@protonmail.com";
|
||||
github = "contrun";
|
||||
githubId = 32609395;
|
||||
name = "B YI";
|
||||
};
|
||||
couchemar = {
|
||||
email = "couchemar@yandex.ru";
|
||||
github = "couchemar";
|
||||
|
23
pkgs/tools/networking/dnsproxy/default.nix
Normal file
23
pkgs/tools/networking/dnsproxy/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchFromGitHub, buildGoModule }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "dnsproxy";
|
||||
version = "0.20.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "AdguardTeam";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0yd3d90ssdzpbsdq068dvsi0r1z2rlv3wpbmpkhfgpxmwrvdanrq";
|
||||
};
|
||||
|
||||
modSha256 = "0cqwkmhajp3py3b5aj3qz9480qy2ws0vy1gk21bxjm56wqxl2gf0";
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -2714,6 +2714,8 @@ in
|
||||
|
||||
dnsmasq = callPackage ../tools/networking/dnsmasq { };
|
||||
|
||||
dnsproxy = callPackage ../tools/networking/dnsproxy { };
|
||||
|
||||
dnsperf = callPackage ../tools/networking/dnsperf { };
|
||||
|
||||
dnsrecon = callPackage ../tools/security/dnsrecon { };
|
||||
|
Loading…
Reference in New Issue
Block a user