Merge pull request #112693 from felixsinger/pkgs-iotools-x86

pkgs/iotools: Support only x86-based Linux platforms
This commit is contained in:
Sandro 2021-02-11 00:51:58 +01:00 committed by GitHub
commit f6d2963426
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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" ];
};
}