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

Commits on Jun 30, 2017

  1. Copy the full SHA
    171c088 View commit details
  2. Merge pull request #26995 from NeQuissimus/bind_9_11_1_p2

    bind: 9.10.5-P2 -> 9.11.1-P2
    peti authored Jun 30, 2017
    Copy the full SHA
    33a5e7f 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
@@ -3,14 +3,14 @@

assert enableSeccomp -> libseccomp != null;

let version = "9.10.5-P2"; in
let version = "9.11.1-P2"; in

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

src = fetchurl {
url = "http://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz";
sha256 = "0cwrwlkfd6wnkw2ylkz2iyqlz73s3kf6q0fxsfwnh3fhxps2i90r";
sha256 = "19gyh7yij6cpvk5b199ghhns5wmsz67d2rpgvl91dbkm2m1wclxz";
};

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