bind: fix cross-compilation

Upstream accidently broke cross-compilation. It has been fixed but not released
yet, so we temporarily add the patch here.
This commit is contained in:
Ben Wolsieffer 2020-11-08 20:58:33 -05:00 committed by Frederik Rietdijk
parent c68e739300
commit 82a9f2331c

View File

@ -22,6 +22,11 @@ stdenv.mkDerivation rec {
patches = [
./dont-keep-configure-flags.patch
./remove-mkdir-var.patch
# Fix cross-compilation (will be included in next release after 9.16.8)
(fetchpatch {
url = "https://gitlab.isc.org/isc-projects/bind9/-/commit/35ca6df07277adff4df7472a0b01ea5438cdf1ff.patch";
sha256 = "1sj0hcd0wgkam7hrbp2vw2yymmni4azr9ixd9shz1l6ja90bdj9h";
})
];
nativeBuildInputs = [ perl pkg-config ];