dnsproxy: 0.54.0 -> 0.64.1
This commit is contained in:
parent
fa9a51752f
commit
f38db9ab2a
1 changed files with 8 additions and 5 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue