mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
Merge pull request #287998 from diogotcorreia/dnsproxy-update-0.64.1
dnsproxy: 0.54.0 -> 0.65.2
This commit is contained in:
commit
6262050b9f
@ -2,18 +2,21 @@
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "dnsproxy";
|
||||
version = "0.54.0";
|
||||
version = "0.65.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "AdguardTeam";
|
||||
repo = pname;
|
||||
repo = "dnsproxy";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-wA88v8zF5sq3NQwKh8g4k/COviuaegGn6bBTzBMcdGM=";
|
||||
hash = "sha256-+82dYFk5mN1p17++2Yg3GCLe8Ud4KbZIGgdfaTepEBw=";
|
||||
};
|
||||
|
||||
vendorHash = null;
|
||||
vendorHash = "sha256-kBf32hXZ5fpu2ME30t5FmYwGMnD6Jp6owGnjUL9CViY=";
|
||||
|
||||
ldflags = [ "-s" "-w" "-X" "main.VersionString=${version}" ];
|
||||
ldflags = [ "-s" "-w" "-X" "github.com/AdguardTeam/dnsproxy/internal/version.version=${version}" ];
|
||||
|
||||
# Development tool dependencies; not part of the main project
|
||||
excludedPackages = [ "internal/tools" ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
@ -21,7 +24,7 @@ buildGoModule rec {
|
||||
description = "Simple DNS proxy with DoH, DoT, and DNSCrypt support";
|
||||
homepage = "https://github.com/AdguardTeam/dnsproxy";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ contrun ];
|
||||
maintainers = with maintainers; [ contrun diogotcorreia ];
|
||||
mainProgram = "dnsproxy";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user