pkgs/iotools: Support only x86-based Linux platforms

Support only x86-based Linux platforms since everything else is
untested.

Signed-off-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Felix Singer 2021-02-11 00:12:31 +01:00
parent 758b29b5a2
commit 6324544d7e

View file

@ -30,6 +30,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/adurbin/iotools";
license = licenses.gpl2Only;
maintainers = with maintainers; [ felixsinger ];
platforms = platforms.linux;
platforms = [ "x86_64-linux" "i686-linux" ];
};
}