mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
bind: 9.20.8 -> 9.20.9 (#409445)
This commit is contained in:
commit
8ef82d9b1d
1 changed files with 13 additions and 10 deletions
|
@ -27,11 +27,11 @@
|
||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "bind";
|
pname = "bind";
|
||||||
version = "9.20.8";
|
version = "9.20.9";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://downloads.isc.org/isc/bind9/${finalAttrs.version}/${finalAttrs.pname}-${finalAttrs.version}.tar.xz";
|
url = "https://downloads.isc.org/isc/bind9/${finalAttrs.version}/${finalAttrs.pname}-${finalAttrs.version}.tar.xz";
|
||||||
hash = "sha256-MATZnEdr6rSamGwtSfkC4s13ZsmrGLJh6LNTyr86BLU=";
|
hash = "sha256-PSaQDtnJqFkHP/6puX4pLBJI2tGCebF7BfyyPDCR+G0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [
|
outputs = [
|
||||||
|
@ -136,13 +136,16 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
tests = {
|
tests =
|
||||||
withCheck = finalAttrs.finalPackage.overrideAttrs { doCheck = true; };
|
{
|
||||||
inherit (nixosTests) bind;
|
withCheck = finalAttrs.finalPackage.overrideAttrs { doCheck = true; };
|
||||||
prometheus-exporter = nixosTests.prometheus-exporters.bind;
|
inherit (nixosTests) bind;
|
||||||
kubernetes-dns-single-node = nixosTests.kubernetes.dns-single-node;
|
prometheus-exporter = nixosTests.prometheus-exporters.bind;
|
||||||
kubernetes-dns-multi-node = nixosTests.kubernetes.dns-multi-node;
|
}
|
||||||
};
|
// lib.optionalAttrs (stdenv.hostPlatform.system == "x86_64-linux") {
|
||||||
|
kubernetes-dns-single-node = nixosTests.kubernetes.dns-single-node;
|
||||||
|
kubernetes-dns-multi-node = nixosTests.kubernetes.dns-multi-node;
|
||||||
|
};
|
||||||
|
|
||||||
updateScript = gitUpdater {
|
updateScript = gitUpdater {
|
||||||
# No nicer place to find latest stable release.
|
# No nicer place to find latest stable release.
|
||||||
|
@ -160,7 +163,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
changelog = "https://downloads.isc.org/isc/bind9/cur/${lib.versions.majorMinor finalAttrs.version}/doc/arm/html/notes.html#notes-for-bind-${
|
changelog = "https://downloads.isc.org/isc/bind9/cur/${lib.versions.majorMinor finalAttrs.version}/doc/arm/html/notes.html#notes-for-bind-${
|
||||||
lib.replaceStrings [ "." ] [ "-" ] finalAttrs.version
|
lib.replaceStrings [ "." ] [ "-" ] finalAttrs.version
|
||||||
}";
|
}";
|
||||||
maintainers = with maintainers; [ globin ];
|
maintainers = with maintainers; [ ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
|
||||||
outputsToInstall = [
|
outputsToInstall = [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue