2022-10-31T06:03:27 bambootracker 0.5.2 -> 0.5.3 https://repology.org/metapackage/bambootracker/versions 2022-10-31T06:03:29 attrpath: bambootracker 2022-10-31T06:03:30 Checking auto update branch... 2022-10-31T06:03:30 No auto update branch exists 2022-10-31T06:03:30 Old version 0.5.2" not present in master derivation file with contents: { mkDerivation , stdenv , lib , fetchFromGitHub , qmake , pkg-config , qttools , qtbase , rtaudio , rtmidi }: mkDerivation rec { pname = "bambootracker"; version = "0.5.3"; src = fetchFromGitHub { owner = "BambooTracker"; repo = "BambooTracker"; rev = "v${version}"; fetchSubmodules = true; sha256 = "sha256-OaktEUWWDEW+MYnQkaB8FvkuH29VDXFqBVSTEJ7Sz7A="; }; nativeBuildInputs = [ qmake qttools pkg-config ]; buildInputs = [ qtbase rtaudio rtmidi ]; qmakeFlags = [ "CONFIG+=system_rtaudio" "CONFIG+=system_rtmidi" ]; postConfigure = "make qmake_all"; postInstall = lib.optionalString stdenv.hostPlatform.isDarwin '' mkdir -p $out/Applications mv $out/{bin,Applications}/BambooTracker.app ln -s $out/{Applications/BambooTracker.app/Contents/MacOS,bin}/BambooTracker ''; meta = with lib; { description = "A tracker for YM2608 (OPNA) which was used in NEC PC-8801/9801 series computers"; homepage = "https://bambootracker.github.io/BambooTracker/"; license = licenses.gpl2Plus; platforms = platforms.all; maintainers = with maintainers; [ OPNA2608 ]; }; }