b8bc039a13
pt2-clone,ft2-clone: only build on little-endian systems
38 lines
861 B
Nix
38 lines
861 B
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, nixosTests
|
|
, alsaLib
|
|
, SDL2
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pt2-clone";
|
|
version = "1.24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "8bitbubsy";
|
|
repo = "pt2-clone";
|
|
rev = "v${version}";
|
|
sha256 = "0lw18943dqgydgl4byk440j016m486s82k6hhqjn3w75108b7w1r";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ SDL2 ] ++ stdenv.lib.optional stdenv.isLinux alsaLib;
|
|
|
|
passthru.tests = {
|
|
pt2-clone-opens = nixosTests.pt2-clone;
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A highly accurate clone of the classic ProTracker 2.3D software for Amiga";
|
|
homepage = "https://16-bits.org/pt2.php";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ fgaz ];
|
|
# From HOW-TO-COMPILE.txt:
|
|
# > This code is NOT big-endian compatible
|
|
platforms = platforms.littleEndian;
|
|
};
|
|
}
|
|
|