3
0
Fork 0
forked from mirrors/nixpkgs

knot-resolver: remove aarch64 from meta.platforms

It will compile but won't really work ATM.
This commit is contained in:
Vladimír Čunát 2017-07-10 18:10:17 +02:00
parent 8e9d618ef3
commit 3678981f9f
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -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 */ ];
};
}