pt2-clone: only build on little-endian systems

This commit is contained in:
Francesco Gazzetta 2020-10-02 13:53:35 +02:00
parent 6353c2dee2
commit b912774257

View File

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