Skip to content

Commit a595e78

Browse files
committedJul 10, 2017
knot-resolver: remove aarch64 from meta.platforms
It will compile but won't really work ATM. (cherry picked from commit 3678981)
1 parent 5287b65 commit a595e78

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎pkgs/servers/dns/knot-resolver/default.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ stdenv.mkDerivation rec {
6262
description = "Caching validating DNS resolver, from .cz domain registry";
6363
homepage = https://knot-resolver.cz;
6464
license = licenses.gpl3Plus;
65-
platforms = platforms.unix;
65+
# Platforms using negative pointers for stack won't work ATM due to LuaJIT impl.
66+
platforms = filter (p: p != "aarch64-linux") platforms.unix;
6667
maintainers = [ maintainers.vcunat /* upstream developer */ ];
6768
};
6869
}

0 commit comments

Comments
 (0)
Please sign in to comment.