2020-02-20 08:16:24 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
2020-07-29 17:00:33 +00:00
|
|
|
, nixosTests
|
2020-02-20 08:16:24 +00:00
|
|
|
, alsaLib
|
|
|
|
, SDL2
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "pt2-clone";
|
2020-09-26 09:47:06 +00:00
|
|
|
version = "1.23";
|
2020-02-20 08:16:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "8bitbubsy";
|
|
|
|
repo = "pt2-clone";
|
|
|
|
rev = "v${version}";
|
2020-09-26 09:47:06 +00:00
|
|
|
sha256 = "1vixpp0vqpawqviwl44wn8zf602zyyrgqnjzrlwjrmdzydx9c93y";
|
2020-02-20 08:16:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ SDL2 ] ++ stdenv.lib.optional stdenv.isLinux alsaLib;
|
|
|
|
|
2020-07-29 17:00:33 +00:00
|
|
|
passthru.tests = {
|
|
|
|
pt2-clone-opens = nixosTests.pt2-clone;
|
|
|
|
};
|
|
|
|
|
2020-02-20 08:16:24 +00:00
|
|
|
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 ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|