mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
85 lines
2.1 KiB
Nix
85 lines
2.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, gitUpdater
|
|
, pkg-config
|
|
, qmake
|
|
, qt5compat ? null
|
|
, qtbase
|
|
, qttools
|
|
, qtwayland
|
|
, rtaudio_6
|
|
, rtmidi
|
|
, wrapQtAppsHook
|
|
}:
|
|
|
|
assert lib.versionAtLeast qtbase.version "6.0" -> qt5compat != null;
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "bambootracker";
|
|
version = "0.6.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BambooTracker";
|
|
repo = "BambooTracker";
|
|
rev = "v${finalAttrs.version}";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-rMYs2jixzoMGem9lxAjDMbFOMrnK8BLFjZIagdZk/Ok=";
|
|
};
|
|
|
|
postPatch = lib.optionalString (lib.versionAtLeast qtbase.version "6.0") ''
|
|
# Work around lrelease finding in qmake being broken by using pre-Qt5.12 code path
|
|
# https://github.com/NixOS/nixpkgs/issues/214765
|
|
substituteInPlace BambooTracker/lang/lang.pri \
|
|
--replace 'equals(QT_MAJOR_VERSION, 5):lessThan(QT_MINOR_VERSION, 12)' 'if(true)'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
qmake
|
|
qttools
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
rtaudio_6
|
|
rtmidi
|
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
qtwayland
|
|
] ++ lib.optionals (lib.versionAtLeast qtbase.version "6.0") [
|
|
qt5compat
|
|
];
|
|
|
|
qmakeFlags = [
|
|
"CONFIG+=system_rtaudio"
|
|
"CONFIG+=system_rtmidi"
|
|
];
|
|
|
|
postConfigure = "make qmake_all";
|
|
|
|
# Wrapping the inside of the app bundles, avoiding double-wrapping
|
|
dontWrapQtApps = stdenv.hostPlatform.isDarwin;
|
|
|
|
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
|
|
wrapQtApp $out/Applications/BambooTracker.app/Contents/MacOS/BambooTracker
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gitUpdater {
|
|
rev-prefix = "v";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Tracker for YM2608 (OPNA) which was used in NEC PC-8801/9801 series computers";
|
|
mainProgram = "BambooTracker";
|
|
homepage = "https://bambootracker.github.io/BambooTracker/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ OPNA2608 ];
|
|
};
|
|
})
|