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-29 16:03:11 -06:00 committed by Bjørn Forsman
parent 1f0e8ac1f9
commit ca80f30909

View File

@ -4,7 +4,7 @@
, fetchFromGitHub , fetchFromGitHub
, installShellFiles , installShellFiles
, externalPlugins ? [] , externalPlugins ? []
, vendorHash ? "sha256-TvIswNQ7DL/MtYmMSxXf+VqKHcmzZVZwohOCvRWxBkY=" , vendorHash ? "sha256-tp22jj6DNnYFQhtAFW2uLo10ty//dyNqIDH2egDgbOw="
}: }:
let let
@ -14,13 +14,13 @@ let
builtins.map ({name, repo, version}: "${repo}@${version}") attrs; builtins.map ({name, repo, version}: "${repo}@${version}") attrs;
in buildGoModule rec { in buildGoModule rec {
pname = "coredns"; pname = "coredns";
version = "1.11.0"; version = "1.11.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "coredns"; owner = "coredns";
repo = "coredns"; repo = "coredns";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-Mn8hOsODTlnl6PJaevMcyIKkIx/1Lk2HGA7fSSizR20="; sha256 = "sha256-XZoRN907PXNKV2iMn51H/lt8yPxhPupNfJ49Pymdm9Y=";
}; };
inherit vendorHash; inherit vendorHash;