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: 97fc74fd3492
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a25b39f2f261
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 21, 2019

  1. bind: 9.14.4 -> 9.14.6

    9.14.5: https://gitlab.isc.org/isc-projects/bind9/blob/v9_14_5/CHANGES
    9.14.6: https://gitlab.isc.org/isc-projects/bind9/blob/v9_14/CHANGES
    
    9.14.6 above links to the 9.14 branch CHANGES, no tag yet.
    ISC's website has 9.14.6, which is the authoritative source.
    
    (cherry picked from commit 88aaa57)
    dtzWill authored and globin committed Oct 21, 2019
    Copy the full SHA
    58d2c0c View commit details
  2. bind: 9.14.6 -> 9.14.7

    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 0060782)
    r-ryantm authored and globin committed Oct 21, 2019
    Copy the full SHA
    a25b39f View commit details
Showing with 2 additions and 4 deletions.
  1. +2 −4 pkgs/servers/dns/bind/default.nix
6 changes: 2 additions & 4 deletions pkgs/servers/dns/bind/default.nix
Original file line number Diff line number Diff line change
@@ -8,15 +8,13 @@
assert enableSeccomp -> libseccomp != null;
assert enablePython -> python3 != null;

let version = "9.14.4"; in

stdenv.mkDerivation rec {
pname = "bind";
inherit version;
version = "9.14.7";

src = fetchurl {
url = "https://ftp.isc.org/isc/bind9/${version}/${pname}-${version}.tar.gz";
sha256 = "0gxqws7ml15lwkjw9mdcd759gv5kk3s9m17j3vrp9448ls1gnbii";
sha256 = "07998nx0yv3xy8c62b1ira9qygsgvpljwcgb47ypzxq8b57gb86f";
};

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