bind: fix build on armv6l

This commit is contained in:
Ben Wolsieffer 2019-06-08 19:01:25 -04:00
parent 100f0b032d
commit b473f17e40

View file

@ -23,6 +23,12 @@ stdenv.mkDerivation rec {
patches = [
./dont-keep-configure-flags.patch
./remove-mkdir-var.patch
# Fix build on armv6l
(fetchpatch {
url = "https://gitlab.isc.org/isc-projects/bind9/commit/f546769b8b1077a0ebfe270b8a283469ea3158d0.patch";
sha256 = "060f35lj6rr2qg7sy9pwy3946q2bsps4m9knmw15x6n6nmzvxrcv";
excludes = [ "CHANGES" ];
})
] ++ stdenv.lib.optional stdenv.isDarwin ./darwin-openssl-linking-fix.patch;
nativeBuildInputs = [ perl ];