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

Commits on May 26, 2017

  1. nsd: 4.1.15 -> 4.1.16

    leenaars authored and hrdinka committed May 26, 2017
    Copy the full SHA
    88cf6a3 View commit details
  2. nsd: fix openssl path in nsd-control-setup

    Closes #26002
    leenaars authored and hrdinka committed May 26, 2017
    Copy the full SHA
    88ed927 View commit details
Showing with 6 additions and 2 deletions.
  1. +6 −2 pkgs/servers/dns/nsd/default.nix
8 changes: 6 additions & 2 deletions pkgs/servers/dns/nsd/default.nix
Original file line number Diff line number Diff line change
@@ -13,13 +13,17 @@
}:

stdenv.mkDerivation rec {
name = "nsd-4.1.15";
name = "nsd-4.1.16";

src = fetchurl {
url = "http://www.nlnetlabs.nl/downloads/nsd/${name}.tar.gz";
sha256 = "494a862cfcd26a525a4bf06306eb7ab0387b34678ac6d37767507438e3a23a4b";
sha256 = "1cmaddfjb7yr87gjd5yv4d0qng0j97sy5rw5m3zxsp6c4fnng0vz";
};

prePatch = ''
substituteInPlace nsd-control-setup.sh.in --replace openssl ${openssl}/bin/openssl
'';

buildInputs = [ libevent openssl ];

configureFlags =