ft2-clone: only build on little-endian systems

This commit is contained in:
Francesco Gazzetta 2020-10-02 13:53:45 +02:00
parent b912774257
commit 672ab0d63a

View File

@ -24,7 +24,9 @@ stdenv.mkDerivation rec {
homepage = "https://16-bits.org/ft2.php"; homepage = "https://16-bits.org/ft2.php";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ fgaz ]; maintainers = with maintainers; [ fgaz ];
platforms = platforms.all; # From HOW-TO-COMPILE.txt:
# > This code is NOT big-endian compatible
platforms = platforms.littleEndian;
}; };
} }