mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
knot-resolver: remove aarch64 from meta.platforms
It will compile but won't really work ATM.
This commit is contained in:
parent
8e9d618ef3
commit
3678981f9f
@ -62,7 +62,8 @@ stdenv.mkDerivation rec {
|
||||
description = "Caching validating DNS resolver, from .cz domain registry";
|
||||
homepage = https://knot-resolver.cz;
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.unix;
|
||||
# Platforms using negative pointers for stack won't work ATM due to LuaJIT impl.
|
||||
platforms = filter (p: p != "aarch64-linux") platforms.unix;
|
||||
maintainers = [ maintainers.vcunat /* upstream developer */ ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user