mixbus12
Downloads a prebuilt proprietary DAW installer from eu1.download.solidstatelogic.com, which is plausibly Harrison/SSL's own official CDN infrastructure (SSL acquired Harrison), with a hardcoded sha256 checksum; the .run installer is executed only with --noexec to extract files, and the rest is standard packaging — no obfuscation, no exfiltration, no piped-to-shell payloads.
Triggered rules
llm_review
The static rules flagged this MEDIUM, but an AI model (anthropic/claude-4.6-sonnet-20260217) reviewed the full PKGBUILD and judged it LOW (confidence 75%): Downloads a prebuilt proprietary DAW installer from eu1.download.solidstatelogic.com, which is plausibly Harrison/SSL's own official CDN infrastructure (SSL acquired Harrison), with a hardcoded sha256 checksum; the .run installer is executed only with --noexec to extract files, and the rest is standard packaging — no obfuscation, no exfiltration, no piped-to-shell payloads.
1 higher static finding superseded - not the current verdict (shown for transparency)
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:34
"Mixbus-${pkgver}-x86_64.tar::https://eu1.download.solidstatelogic.com/Mixbus%2012/Mixbus-${pkgver}-x86_64.tar"
PKGBUILD
1 offending line(s) highlighted# Maintainer: z3n <z3nlabs at proton dot me>
# Version 12.0.1 - Mixbus 12 major release:
# - First release of the Mixbus 12 series (Ardour 8-based engine).
# - New launcher/binary naming: /opt/Mixbus-12.0.1/bin/mixbus12.
# - Pipewire JACK compatibility shim (PIPEWIRE_MIDI_BROKEN) handled by the
# bundled launcher for affected Pipewire 1.1-1.5 releases.
#
# WARNING - Linux Version Limitations:
# The Linux version is missing several advertised features present in Windows/Mac:
# - NO SSL 9KJ Channel Strip (Windows/Mac exclusive)
# - NO Slate Sounds Starter Pack (replaced with Goldbaby Audio Loops)
# - Partial/unclear Harrison Creator Pack implementation
# - Unclear RTA analyzer per-channel implementation
# Linux users receive core DAW functionality but not all advertised premium features.
pkgname=mixbus12
pkgver=12.0.1
pkgrel=1
pkgdesc="Harrison Consoles Mixbus DAW (Version 12)"
arch=('x86_64')
url="https://store.harrisonaudio.com/all-products/mixbus"
license=('custom')
groups=('pro-audio')
depends=('glibc' 'libcurl-gnutls' 'readline' 'ncurses' 'zlib' 'bzip2')
makedepends=(
'binutils'
)
optdepends=('avldrums.lv2: AVLinux drumkits'
'gmsynth.lv2: General MIDI LV2 Synth'
'setbfree-lv2: Tonewheel organ'
'x42-plugins-lv2: Set of plugins and utilities from the X42 Project')
source=(
"Mixbus-${pkgver}-x86_64.tar::https://eu1.download.solidstatelogic.com/Mixbus%2012/Mixbus-${pkgver}-x86_64.tar"
"${pkgname}.install"
)
sha256sums=(
'06bd21dc64a6083215f3a2fc7189f3d9d75fad751a5da5b38735fb92f459f740'
'764953880bdd424974bda39ad387830777cf746649578962a1c6e37830202550'
)
options=('!strip')
install=${pkgname}.install
prepare() {
cd "$srcdir"
# Extract the .run file from the tar archive
tar -xf "Mixbus-${pkgver}-x86_64.tar"
chmod +x "Mixbus-${pkgver}-x86_64.run"
# Use a completely clean environment for extraction
# This prevents any system libraries from being overridden by Mixbus libraries
env -i HOME="$HOME" USER="$USER" PATH="/usr/bin:/bin" \
LD_LIBRARY_PATH="" \
./Mixbus-${pkgver}-x86_64.run --target extract --noexec
# Similarly for the tarball extraction
env -i HOME="$HOME" USER="$USER" PATH="/usr/bin:/bin" \
LD_LIBRARY_PATH="" \
tar xf extract/Mixbus_x86_64-${pkgver}.tar
}
package() {
cd "$srcdir"
# Create required directories
install -dm755 "$pkgdir/opt/Mixbus-${pkgver}"
install -dm755 "$pkgdir/usr/bin"
install -dm755 "$pkgdir/usr/share/applications"
install -dm755 "$pkgdir/usr/share/icons/hicolor/16x16/apps"
install -dm755 "$pkgdir/usr/share/icons/hicolor/22x22/apps"
install -dm755 "$pkgdir/usr/share/icons/hicolor/32x32/apps"
install -dm755 "$pkgdir/usr/share/icons/hicolor/48x48/apps"
install -dm755 "$pkgdir/usr/share/icons/hicolor/256x256/apps"
# Copy the extracted files to the package directory
cp -a Mixbus_x86_64-${pkgver}/* "$pkgdir/opt/Mixbus-${pkgver}/"
# Remove conflicting bundled libraries that clash with system libraries
# This prevents symbol lookup errors like "undefined symbol: rl_print_keybinding"
# and other compatibility issues with recent Arch updates
# Core system libraries that should use system versions
rm -f "$pkgdir/opt/Mixbus-${pkgver}/lib/libreadline.so"*
rm -f "$pkgdir/opt/Mixbus-${pkgver}/lib/libhistory.so"*
rm -f "$pkgdir/opt/Mixbus-${pkgver}/lib/libncurses.so"*
rm -f "$pkgdir/opt/Mixbus-${pkgver}/lib/libncursesw.so"*
rm -f "$pkgdir/opt/Mixbus-${pkgver}/lib/libtinfo.so"*
rm -f "$pkgdir/opt/Mixbus-${pkgver}/lib/libz.so"*
rm -f "$pkgdir/opt/Mixbus-${pkgver}/lib/libbz2.so"*
# Install license file
install -Dm644 "$pkgdir/opt/Mixbus-${pkgver}/share/doc/COPYING" \
"$pkgdir/usr/share/licenses/${pkgname}/LICENSE" || \
install -Dm644 "$pkgdir/opt/Mixbus-${pkgver}/COPYING" \
"$pkgdir/usr/share/licenses/${pkgname}/LICENSE" || \
install -Dm644 "$pkgdir/opt/Mixbus-${pkgver}/LICENSE" \
"$pkgdir/usr/share/licenses/${pkgname}/LICENSE" || true
# Install icons
install -Dm644 "$pkgdir/opt/Mixbus-${pkgver}/share/resources/Mixbus-icon_16px.png" \
"$pkgdir/usr/share/icons/hicolor/16x16/apps/mixbus12.png"
install -Dm644 "$pkgdir/opt/Mixbus-${pkgver}/share/resources/Mixbus-icon_22px.png" \
"$pkgdir/usr/share/icons/hicolor/22x22/apps/mixbus12.png"
install -Dm644 "$pkgdir/opt/Mixbus-${pkgver}/share/resources/Mixbus-icon_32px.png" \
"$pkgdir/usr/share/icons/hicolor/32x32/apps/mixbus12.png"
install -Dm644 "$pkgdir/opt/Mixbus-${pkgver}/share/resources/Mixbus-icon_48px.png" \
"$pkgdir/usr/share/icons/hicolor/48x48/apps/mixbus12.png"
install -Dm644 "$pkgdir/opt/Mixbus-${pkgver}/share/resources/Mixbus-icon_256px.png" \
"$pkgdir/usr/share/icons/hicolor/256x256/apps/mixbus12.png"
# Create wrapper script to handle library paths
cat > "$pkgdir/usr/bin/mixbus12-wrapper" << EOF
#!/bin/bash
# Enhanced wrapper to handle library conflicts and system compatibility
# Ensure system libraries take precedence over potentially conflicting bundled ones
# This prevents issues like "undefined symbol: rl_print_keybinding"
export LD_LIBRARY_PATH="/opt/Mixbus-${pkgver}/lib:\$LD_LIBRARY_PATH"
# Set additional environment variables for better compatibility
export MIXBUS_SYSTEM_LIB_PATH="/usr/lib:/lib"
# Run Mixbus with appropriate environment
exec env GDK_BACKEND=x11 /opt/Mixbus-${pkgver}/bin/mixbus12 "\$@"
EOF
chmod 755 "$pkgdir/usr/bin/mixbus12-wrapper"
# Install desktop file with the wrapper
cat > "$pkgdir/usr/share/applications/mixbus12.desktop" << EOF
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/usr/bin/mixbus12-wrapper
Name=Harrison Mixbus Version 12
Icon=mixbus12
Comment=Digital Audio Workstation
Categories=AudioVideo;AudioEditing;Audio;Recorder;
StartupWMClass=Mixbus-${pkgver}
StartupNotify=true
EOF
# Create symlink to the wrapper
ln -s "/usr/bin/mixbus12-wrapper" "$pkgdir/usr/bin/mixbus12"
# Fix permissions
chmod -R 755 "$pkgdir/opt/Mixbus-${pkgver}"
find "$pkgdir/opt/Mixbus-${pkgver}" -type f -exec chmod 644 {} \;
find "$pkgdir/opt/Mixbus-${pkgver}/bin" -type f -exec chmod 755 {} \; || true
find "$pkgdir/opt/Mixbus-${pkgver}/lib" -name "*.so*" -exec chmod 755 {} \; || true
find "$pkgdir/opt/Mixbus-${pkgver}/lib" -name "ardour-*" -exec chmod 755 {} \; || true
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Low | 2 |
| 2026-09-16 00:03:17 | Low | 2 |
| 2026-09-15 00:25:31 | Low | 2 |
| 2026-09-14 00:27:57 | Low | 2 |
| 2026-09-13 00:19:54 | Low | 2 |
| 2026-09-12 00:25:17 | Low | 2 |
| 2026-09-11 00:19:22 | Low | 2 |
| 2026-09-10 00:22:44 | Low | 2 |
| 2026-09-09 00:04:09 | Low | 2 |
| 2026-09-08 00:18:08 | Low | 2 |
| 2026-09-07 00:30:15 | Low | 2 |
| 2026-09-06 00:17:06 | Low | 2 |
| 2026-09-05 00:16:27 | Low | 2 |
| 2026-09-04 00:03:13 | Low | 2 |
| 2026-09-03 00:15:47 | Low | 2 |
| 2026-09-02 00:02:31 | Low | 2 |
| 2026-09-01 00:11:19 | Low | 2 |
| 2026-08-31 00:19:57 | Low | 2 |
| 2026-08-30 00:04:14 | Low | 2 |
| 2026-08-29 00:29:17 | Low | 2 |