Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
103 lines
2.5 KiB
Nix
103 lines
2.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
multiStdenv,
|
|
fetchFromGitHub,
|
|
requireFile,
|
|
unzip,
|
|
wine,
|
|
cmake,
|
|
makeWrapper,
|
|
wrapQtAppsHook,
|
|
file,
|
|
libX11,
|
|
qt5,
|
|
vst2-sdk,
|
|
}:
|
|
|
|
let
|
|
version = "1.3.3";
|
|
|
|
airwave-src = fetchFromGitHub {
|
|
owner = "phantom-code";
|
|
repo = "airwave";
|
|
rev = version;
|
|
sha256 = "1ban59skw422mak3cp57lj27hgq5d3a4f6y79ysjnamf8rpz9x4s";
|
|
};
|
|
|
|
wine-wow64 = wine.override {
|
|
wineRelease = "stable";
|
|
wineBuild = "wineWow";
|
|
};
|
|
|
|
wine-xembed = wine-wow64.overrideDerivation (oldAttrs: {
|
|
patchFlags = [ "-p2" ];
|
|
patches = [ "${airwave-src}/fix-xembed-wine-windows.patch" ];
|
|
});
|
|
|
|
in
|
|
|
|
multiStdenv.mkDerivation {
|
|
pname = "airwave";
|
|
inherit version;
|
|
|
|
src = airwave-src;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
makeWrapper
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
file
|
|
libX11
|
|
qt5.qtbase
|
|
wine-xembed
|
|
];
|
|
|
|
postPatch = ''
|
|
# Binaries not used directly should land in libexec/.
|
|
substituteInPlace src/common/storage.cpp --replace '"/bin"' '"/libexec"'
|
|
|
|
# For airwave-host-32.exe.so, point wineg++ to 32-bit versions of
|
|
# these libraries, as $NIX_LDFLAGS contains only 64-bit ones.
|
|
substituteInPlace src/host/CMakeLists.txt --replace '-m32' \
|
|
'-m32 -L${wine-xembed}/lib -L${wine-xembed}/lib/wine -L${multiStdenv.cc.libc.out}/lib/32'
|
|
'';
|
|
|
|
# libstdc++.so link gets lost in 64-bit executables during
|
|
# shrinking.
|
|
dontPatchELF = true;
|
|
|
|
# Cf. https://github.com/phantom-code/airwave/issues/57
|
|
hardeningDisable = [ "format" ];
|
|
|
|
cmakeFlags = [ "-DVSTSDK_PATH=${vst2-sdk}" ];
|
|
|
|
postInstall = ''
|
|
mv $out/bin $out/libexec
|
|
mkdir $out/bin
|
|
mv $out/libexec/airwave-manager $out/bin
|
|
wrapProgram $out/libexec/airwave-host-32.exe --set WINELOADER ${wine-xembed}/bin/wine
|
|
wrapProgram $out/libexec/airwave-host-64.exe --set WINELOADER ${wine-xembed}/bin/wine64
|
|
'';
|
|
|
|
meta = {
|
|
description = "WINE-based VST bridge for Linux VST hosts";
|
|
longDescription = ''
|
|
Airwave is a wine based VST bridge, that allows for the use of
|
|
Windows 32- and 64-bit VST 2.4 audio plugins with Linux VST
|
|
hosts. Due to the use of shared memory, only one extra copying
|
|
is made for each data transfer. Airwave also uses the XEMBED
|
|
protocol to correctly embed the plugin editor into the host
|
|
window.
|
|
'';
|
|
homepage = "https://github.com/phantom-code/airwave";
|
|
license = lib.licenses.mit;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with lib.maintainers; [ michalrus ];
|
|
hydraPlatforms = [ ];
|
|
};
|
|
}
|