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 02:38:12 +00:00
buildGoModule rec {
pname = "dnsproxy";
2022-07-08 08:00:13 +00:00
version = "0.43.1";
2019-11-18 02:38:12 +00:00
src = fetchFromGitHub {
owner = "AdguardTeam";
repo = pname;
rev = "v${version}";
2022-07-08 08:00:13 +00:00
sha256 = "sha256-q+MLFdZTn14FhJ+gV3j5gVusL19lR7Cpd1BGxGvi848=";
2019-11-18 02:38:12 +00:00
};
vendorSha256 = null;
2019-11-18 02:38:12 +00:00
ldflags = [ "-s" "-w" "-X" "main.VersionString=${version}" ];
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.asl20;
2019-11-18 02:38:12 +00:00
maintainers = with maintainers; [ contrun ];
};
}