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
623 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-11-18 02:38:12 +00:00
buildGoModule rec {
pname = "dnsproxy";
2023-08-23 02:20:10 +00:00
version = "0.54.0";
2019-11-18 02:38:12 +00:00
src = fetchFromGitHub {
owner = "AdguardTeam";
repo = pname;
rev = "v${version}";
2023-08-23 02:20:10 +00:00
sha256 = "sha256-wA88v8zF5sq3NQwKh8g4k/COviuaegGn6bBTzBMcdGM=";
2019-11-18 02:38:12 +00:00
};
2023-04-09 15:01:42 +00:00
vendorHash = 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 ];
};
}