coredns: 1.11.0 -> 1.11.1

https://github.com/coredns/coredns/releases/tag/v1.11.1
This commit is contained in:
Brendan Taylor
2023-09-30 20:29:43 +02:00
committed by Bjørn Forsman
parent 1f0e8ac1f9
commit ca80f30909
+3 -3
View File
@@ -4,7 +4,7 @@
, fetchFromGitHub
, installShellFiles
, externalPlugins ? []
, vendorHash ? "sha256-TvIswNQ7DL/MtYmMSxXf+VqKHcmzZVZwohOCvRWxBkY="
, vendorHash ? "sha256-tp22jj6DNnYFQhtAFW2uLo10ty//dyNqIDH2egDgbOw="
}:
let
@@ -14,13 +14,13 @@ let
builtins.map ({name, repo, version}: "${repo}@${version}") attrs;
in buildGoModule rec {
pname = "coredns";
version = "1.11.0";
version = "1.11.1";
src = fetchFromGitHub {
owner = "coredns";
repo = "coredns";
rev = "v${version}";
sha256 = "sha256-Mn8hOsODTlnl6PJaevMcyIKkIx/1Lk2HGA7fSSizR20=";
sha256 = "sha256-XZoRN907PXNKV2iMn51H/lt8yPxhPupNfJ49Pymdm9Y=";
};
inherit vendorHash;