nixpkgs-suyu/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 03:38:12 +01:00
buildGoModule rec {
pname = "dnsproxy";
2022-03-12 07:30:41 +01:00
version = "0.41.4";
2019-11-18 03:38:12 +01:00
src = fetchFromGitHub {
owner = "AdguardTeam";
repo = pname;
rev = "v${version}";
2022-03-12 07:30:41 +01:00
sha256 = "sha256-aVYjYEAEANAMGv7frZWfYWLzX7rcI8phpjvrENK8cc4=";
2019-11-18 03:38:12 +01:00
};
vendorSha256 = null;
2019-11-18 03:38:12 +01:00
ldflags = [ "-s" "-w" "-X" "main.VersionString=${version}" ];
doCheck = false;
meta = with lib; {
2019-11-18 03:38:12 +01:00
description = "Simple DNS proxy with DoH, DoT, and DNSCrypt support";
homepage = "https://github.com/AdguardTeam/dnsproxy";
license = licenses.asl20;
2019-11-18 03:38:12 +01:00
maintainers = with maintainers; [ contrun ];
};
}