Unverified Commit ac580aa5 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

knot-dns: 3.4.8 -> 3.5.0 (#444006)

parents 1d7956a2 7852c02c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ let
          # We output the config section in the upstream-mandated order.
          # Ordering is important due to forward-references not being allowed.
          # See definition of conf_export and 'const yp_item_t conf_schema'
          # upstream for reference.  Last updated for 3.3.
          # upstream for reference.  Last updated for 3.5.
          # When changing the set of sections, also update secAllow above.
          [ (sec_list_fa "id" nix_def "module") ]
          ++ map (sec_plain nix_def) [
@@ -102,6 +102,7 @@ let
            "acl"
            "submission"
            "policy"
            "external"
          ]

          # Export module sections before the template section.
+3 −3
Original line number Diff line number Diff line
@@ -33,11 +33,11 @@

stdenv.mkDerivation rec {
  pname = "knot-dns";
  version = "3.4.8";
  version = "3.5.0";

  src = fetchurl {
    url = "https://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz";
    sha256 = "sha256-ZzCnPb/BLXnYAA/+ItNtBot0Z+dL7h6xIqxJNezqSfk=";
    sha256 = "d52538bf7364c280999dec58c2a02a405dd922ef5794da1473ca7c3cf7f01277";
  };

  outputs = [
@@ -133,7 +133,7 @@ stdenv.mkDerivation rec {
    description = "Authoritative-only DNS server from .cz domain registry";
    homepage = "https://knot-dns.cz";
    changelog = "https://gitlab.nic.cz/knot/knot-dns/-/releases/v${version}";
    license = lib.licenses.gpl3Plus;
    license = lib.licenses.gpl2Plus;
    platforms = lib.platforms.unix;
    maintainers = [ lib.maintainers.vcunat ];
    mainProgram = "knotd";
+2 −2
Original line number Diff line number Diff line
@@ -12,12 +12,12 @@

buildPythonPackage rec {
  pname = "libknot";
  version = "3.4.8";
  version = "3.5.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-mQAHjHBI4mTm4X54kzFRg7cV42/AktRQyNd2gT+n0KU=";
    hash = "sha256-8sWO70le3qmhNiU4xEEM3IOrrc20+WT2Y2UBSPBEFkk=";
  };

  postPatch = ''
+2 −2
Original line number Diff line number Diff line
@@ -7,13 +7,13 @@

python3.pkgs.buildPythonApplication rec {
  pname = "knot-exporter";
  version = "3.4.8";
  version = "3.5.0";
  pyproject = true;

  src = fetchPypi {
    pname = "knot_exporter";
    inherit version;
    hash = "sha256-MmxjwHYFoUebrnqjU4XC6sZAbIqbrnFokzrSk8PBhcU=";
    hash = "sha256-uFCIM+pZiJ6nvapEKjgHRrIuc5p5uq5q1ToD36e19zk=";
  };

  build-system = [