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

Commits on Oct 16, 2019

  1. dnsutils: add delv tool

    delv is provided as a replacement for dig with better DNSSEC support.
    kwohlfahrt committed Oct 16, 2019
    Copy the full SHA
    39afb94 View commit details
  2. Copy the full SHA
    8a293b4 View commit details

Commits on Oct 18, 2019

  1. Merge pull request #71230 from kwohlfahrt/delv

    dnsutils: add 'delv' binary, remove obsolete sigchase
    peti authored Oct 18, 2019
    Copy the full SHA
    9c25430 View commit details
Showing with 1 addition and 2 deletions.
  1. +1 −2 pkgs/servers/dns/bind/default.nix
3 changes: 1 addition & 2 deletions pkgs/servers/dns/bind/default.nix
Original file line number Diff line number Diff line change
@@ -30,8 +30,6 @@ stdenv.mkDerivation rec {
++ lib.optional enableSeccomp libseccomp
++ lib.optional enablePython (python3.withPackages (ps: with ps; [ ply ]));

STD_CDEFINES = [ "-DDIG_SIGCHASE=1" ]; # support +sigchase

depsBuildBuild = [ buildPackages.stdenv.cc ];

configureFlags = [
@@ -65,6 +63,7 @@ stdenv.mkDerivation rec {
moveToOutput bin/host $host
moveToOutput bin/dig $dnsutils
moveToOutput bin/delv $dnsutils
moveToOutput bin/nslookup $dnsutils
moveToOutput bin/nsupdate $dnsutils