3
0
Fork 0
forked from mirrors/nixpkgs

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