Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3f49dd956ede
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a64f22b9fed2
Choose a head ref
  • 5 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 10, 2019

  1. bind: 9.12.2 -> 9.12.2-P2

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/bind/versions
    
    (cherry picked from commit d1c1fbb)
    r-ryantm authored and vcunat committed Mar 10, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    26ef530 View commit details
  2. bind: 9.12.2-P2 -> 9.12.3

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/bind/versions
    
    (cherry picked from commit 21fbc61)
    r-ryantm authored and vcunat committed Mar 10, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    8e24938 View commit details
  3. bind: 9.12.3 -> 9.12.3-P1

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/bind/versions
    
    (cherry picked from commit f884c6c)
    r-ryantm authored and vcunat committed Mar 10, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    f92f1a6 View commit details
  4. bind: 9.12.3-P1 -> 9.12.3-P4

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/bind/versions
    
    (cherry picked from commit e08f01f)
    r-ryantm authored and vcunat committed Mar 10, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    6a4742d View commit details
  5. Merge bind: 9.12.2 -> 9.12.3-P4 (into release-18.09)

    Fixes #56358 CVE-2018-5741.
    BIND maintenance releases seem quite conservative.
    vcunat committed Mar 10, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    a64f22b View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/servers/dns/bind/default.nix
4 changes: 2 additions & 2 deletions pkgs/servers/dns/bind/default.nix
Original file line number Diff line number Diff line change
@@ -8,14 +8,14 @@
assert enableSeccomp -> libseccomp != null;
assert enablePython -> python3 != null;

let version = "9.12.2"; in
let version = "9.12.3-P4"; in

stdenv.mkDerivation rec {
name = "bind-${version}";

src = fetchurl {
url = "https://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz";
sha256 = "0ll46igs9xfq2qclc5wzqsnj3zv7ssga0544gm24s1m7765lqslz";
sha256 = "01pj47z5582rd538dmbzf1msw4jc8j4zr0zx4ciy88r6qr9l80fi";
};

outputs = [ "out" "lib" "dev" "man" "dnsutils" "host" ];