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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
625 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-11-18 05:38:12 +03:00
buildGoModule rec {
pname = "dnsproxy";
2022-03-22 07:03:20 +03:00
version = "0.42.0";
2019-11-18 05:38:12 +03:00
src = fetchFromGitHub {
owner = "AdguardTeam";
repo = pname;
rev = "v${version}";
2022-03-22 07:03:20 +03:00
sha256 = "sha256-UXFDFS2TFzo7DcExazt4h0TTnGeMf6d3FAiPXZWB7Ys=";
2019-11-18 05:38:12 +03:00
};
vendorSha256 = null;
2019-11-18 05:38:12 +03:00
ldflags = [ "-s" "-w" "-X" "main.VersionString=${version}" ];
doCheck = false;
meta = with lib; {
2019-11-18 05:38:12 +03:00
description = "Simple DNS proxy with DoH, DoT, and DNSCrypt support";
homepage = "https://github.com/AdguardTeam/dnsproxy";
license = licenses.asl20;
2019-11-18 05:38:12 +03:00
maintainers = with maintainers; [ contrun ];
};
}