mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
bind: fix build on armv6l
This commit is contained in:
parent
100f0b032d
commit
b473f17e40
1 changed files with 6 additions and 0 deletions
|
@ -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 ];
|
||||
|
|
Loading…
Reference in a new issue