We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 8e9d618 commit 3678981Copy full SHA for 3678981
pkgs/servers/dns/knot-resolver/default.nix
@@ -62,7 +62,8 @@ stdenv.mkDerivation rec {
62
description = "Caching validating DNS resolver, from .cz domain registry";
63
homepage = https://knot-resolver.cz;
64
license = licenses.gpl3Plus;
65
- platforms = platforms.unix;
+ # Platforms using negative pointers for stack won't work ATM due to LuaJIT impl.
66
+ platforms = filter (p: p != "aarch64-linux") platforms.unix;
67
maintainers = [ maintainers.vcunat /* upstream developer */ ];
68
};
69
}
0 commit comments