2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2020-02-20 08:16:24 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
2020-07-29 17:00:33 +00:00
|
|
|
, nixosTests
|
2021-06-10 02:57:09 +00:00
|
|
|
, alsa-lib
|
2020-02-20 08:16:24 +00:00
|
|
|
, SDL2
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "pt2-clone";
|
2021-11-03 22:18:08 +00:00
|
|
|
version = "1.37";
|
2020-02-20 08:16:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "8bitbubsy";
|
|
|
|
repo = "pt2-clone";
|
|
|
|
rev = "v${version}";
|
2021-11-03 22:18:08 +00:00
|
|
|
sha256 = "sha256-r9H+qF542j2qjmOEjJLAtnMU7SkJBJB8nH39zhkZu9M=";
|
2020-02-20 08:16:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
2021-06-10 02:57:09 +00:00
|
|
|
buildInputs = [ SDL2 ] ++ lib.optional stdenv.isLinux alsa-lib;
|
2020-02-20 08:16:24 +00:00
|
|
|
|
2020-07-29 17:00:33 +00:00
|
|
|
passthru.tests = {
|
|
|
|
pt2-clone-opens = nixosTests.pt2-clone;
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-02-20 08:16:24 +00:00
|
|
|
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 ];
|
2020-10-02 11:53:35 +00:00
|
|
|
# From HOW-TO-COMPILE.txt:
|
|
|
|
# > This code is NOT big-endian compatible
|
|
|
|
platforms = platforms.littleEndian;
|
2020-02-20 08:16:24 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|