From 6324544d7ebe259e886f64505efcd968e6a1710b Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Thu, 11 Feb 2021 00:12:31 +0100 Subject: [PATCH] pkgs/iotools: Support only x86-based Linux platforms Support only x86-based Linux platforms since everything else is untested. Signed-off-by: Felix Singer --- pkgs/tools/misc/iotools/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/iotools/default.nix b/pkgs/tools/misc/iotools/default.nix index f123d54a023..12411aac6c6 100644 --- a/pkgs/tools/misc/iotools/default.nix +++ b/pkgs/tools/misc/iotools/default.nix @@ -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" ]; }; }