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: 3cb531f828a0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d987f5d07d10
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 1, 2018

  1. pdns-recursor: 4.1.2 -> 4.1.3 (#41049)

    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
    
    This update was made based on information from https://repology.org/metapackage/pdns-recursor/versions.
    
    These checks were done:
    
    - built on NixOS
    - /nix/store/8ifncdfxzi2s8cnhx7a2hj74h4mqq1vi-pdns-recursor-4.1.3/bin/rec_control passed the binary check.
    - /nix/store/8ifncdfxzi2s8cnhx7a2hj74h4mqq1vi-pdns-recursor-4.1.3/bin/pdns_recursor passed the binary check.
    - 2 of 2 passed binary check by having a zero exit code.
    - 0 of 2 passed binary check by having the new version present in output.
    - found 4.1.3 with grep in /nix/store/8ifncdfxzi2s8cnhx7a2hj74h4mqq1vi-pdns-recursor-4.1.3
    - directory tree listing: https://gist.github.com/5eac7110d507381d1bcb747d44e175ba
    - du listing: https://gist.github.com/4805d9a92ed57016e729c49cf2de1e3c
    r-ryantm authored and xeji committed Jun 1, 2018

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Copy the full SHA
    d987f5d View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/servers/dns/pdns-recursor/default.nix
4 changes: 2 additions & 2 deletions pkgs/servers/dns/pdns-recursor/default.nix
Original file line number Diff line number Diff line change
@@ -8,11 +8,11 @@ with stdenv.lib;

stdenv.mkDerivation rec {
name = "pdns-recursor-${version}";
version = "4.1.2";
version = "4.1.3";

src = fetchurl {
url = "https://downloads.powerdns.com/releases/pdns-recursor-${version}.tar.bz2";
sha256 = "0xpd8k7ahwrwabz05zbjmg54dmd4hm5hkbfn8m1ws6y4f7qm4inv";
sha256 = "12x8gm6771wh2xaqad3p5y08p5pimp6k9h830s0487mwg9glacy1";
};

nativeBuildInputs = [ pkgconfig ];