Merge pull request #99381 from fgaz/ft2-pt2-clone/endianness
pt2-clone,ft2-clone: only build on little-endian systems
This commit is contained in:
commit
b8bc039a13
@ -32,7 +32,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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,7 +29,9 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "https://16-bits.org/pt2.php";
|
homepage = "https://16-bits.org/pt2.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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user