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

Commits on Mar 23, 2019

  1. powerdns: 4.1.6 -> 4.1.7

    This addresses CVE-2019-3871. The details of the issue can be retrieved
    from the official announcement page [0].
    
    [0] https://docs.powerdns.com/authoritative/security-advisories/powerdns-advisory-2019-03.html
    
    (cherry picked from commit f4e9e42)
    andir committed Mar 23, 2019
    Copy the full SHA
    dcbe1b6 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/servers/dns/powerdns/default.nix
4 changes: 2 additions & 2 deletions pkgs/servers/dns/powerdns/default.nix
Original file line number Diff line number Diff line change
@@ -5,11 +5,11 @@

stdenv.mkDerivation rec {
name = "powerdns-${version}";
version = "4.1.5";
version = "4.1.7";

src = fetchurl {
url = "https://downloads.powerdns.com/releases/pdns-${version}.tar.bz2";
sha256 = "12jgkdsh6hzaznq6y9y7hfdpjhnn7ar2qn7x706k9iyqcq55faf3";
sha256 = "11c4r0mbq6ybbihm0jbl9hspb01pj1gi6x3m374liw9jij7dw8b4";
};

nativeBuildInputs = [ pkgconfig ];