dnsproxy: 0.54.0 -> 0.64.1

This commit is contained in:
Diogo Correia 2024-02-11 11:36:45 +01:00
parent fa9a51752f
commit f38db9ab2a
No known key found for this signature in database
GPG Key ID: 12B4F3AC9C065D08

View File

@ -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;