2020-07-31 19:45:35 +00:00
|
|
|
{ mkDerivation
|
2021-03-15 09:14:33 +00:00
|
|
|
, stdenv
|
2021-02-11 19:33:38 +00:00
|
|
|
, lib
|
2020-07-31 19:45:35 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, qmake
|
2021-02-11 19:33:38 +00:00
|
|
|
, pkg-config
|
2020-07-31 19:45:35 +00:00
|
|
|
, qttools
|
2021-02-11 19:33:38 +00:00
|
|
|
, qtbase
|
|
|
|
, rtaudio
|
|
|
|
, rtmidi
|
2020-07-31 19:45:35 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "bambootracker";
|
2023-01-27 21:36:11 +00:00
|
|
|
version = "0.6.0";
|
2020-07-31 19:45:35 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-08-01 18:35:05 +00:00
|
|
|
owner = "BambooTracker";
|
2020-07-31 19:45:35 +00:00
|
|
|
repo = "BambooTracker";
|
|
|
|
rev = "v${version}";
|
2021-08-01 18:35:05 +00:00
|
|
|
fetchSubmodules = true;
|
2023-01-27 21:36:11 +00:00
|
|
|
sha256 = "sha256-yubaKTc8NFLxMY0/5c2VubRHgAGOsRlitmXJ1UHzl60=";
|
2020-07-31 19:45:35 +00:00
|
|
|
};
|
|
|
|
|
2021-02-11 19:33:38 +00:00
|
|
|
nativeBuildInputs = [ qmake qttools pkg-config ];
|
2020-07-31 19:45:35 +00:00
|
|
|
|
2021-02-11 19:33:38 +00:00
|
|
|
buildInputs = [ qtbase rtaudio rtmidi ];
|
2020-07-31 19:45:35 +00:00
|
|
|
|
2021-02-11 19:33:38 +00:00
|
|
|
qmakeFlags = [ "CONFIG+=system_rtaudio" "CONFIG+=system_rtmidi" ];
|
2020-07-31 19:45:35 +00:00
|
|
|
|
2021-02-11 19:33:38 +00:00
|
|
|
postConfigure = "make qmake_all";
|
2020-07-31 19:45:35 +00:00
|
|
|
|
2021-03-15 09:14:33 +00:00
|
|
|
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
2021-08-01 18:35:05 +00:00
|
|
|
mkdir -p $out/Applications
|
|
|
|
mv $out/{bin,Applications}/BambooTracker.app
|
|
|
|
ln -s $out/{Applications/BambooTracker.app/Contents/MacOS,bin}/BambooTracker
|
2021-03-15 09:14:33 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-07-31 19:45:35 +00:00
|
|
|
description = "A tracker for YM2608 (OPNA) which was used in NEC PC-8801/9801 series computers";
|
2021-08-01 18:35:05 +00:00
|
|
|
homepage = "https://bambootracker.github.io/BambooTracker/";
|
|
|
|
license = licenses.gpl2Plus;
|
2020-07-31 19:45:35 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ OPNA2608 ];
|
|
|
|
};
|
|
|
|
}
|