c0495a8f3f
* Use GCC11 since GCC12 is incompatible with JUCE version * Release new CLAP version of the plugin * Do not copy static code library, it is not required for operation and reduces the closure size by 10MB * JUCE uses dlopen to load X11 libraries, add link flags so that these libraries are part of the rpath * Replace gcc-unwrapped dependency with stdenv.cc.cc
131 lines
2.8 KiB
Nix
131 lines
2.8 KiB
Nix
{ alsa-lib
|
|
, at-spi2-core
|
|
, cmake
|
|
, curl
|
|
, dbus
|
|
, libepoxy
|
|
, fetchFromGitHub
|
|
, freeglut
|
|
, freetype
|
|
, gtk3
|
|
, lib
|
|
, libGL
|
|
, libXcursor
|
|
, libXdmcp
|
|
, libXext
|
|
, libXinerama
|
|
, libXrandr
|
|
, libXtst
|
|
, libdatrie
|
|
, libjack2
|
|
, libpsl
|
|
, libselinux
|
|
, libsepol
|
|
, libsysprof-capture
|
|
, libthai
|
|
, libuuid
|
|
, libxkbcommon
|
|
, lv2
|
|
, pcre
|
|
, pcre2
|
|
, pkg-config
|
|
, python3
|
|
, sqlite
|
|
, gcc11Stdenv
|
|
, webkitgtk
|
|
}:
|
|
let
|
|
# JUCE version in submodules is incompatible with GCC12
|
|
# See here: https://forum.juce.com/t/build-fails-on-fedora-wrong-c-version/50902/2
|
|
stdenv = gcc11Stdenv;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "CHOWTapeModel";
|
|
version = "2.11.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jatinchowdhury18";
|
|
repo = "AnalogTapeModel";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-WriHi68Y6hAsrwE+74JtVlAKUR9lfTczj6UK9h2FOGM=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
at-spi2-core
|
|
curl
|
|
dbus
|
|
libepoxy
|
|
freeglut
|
|
freetype
|
|
gtk3
|
|
libGL
|
|
libXcursor
|
|
libXdmcp
|
|
libXext
|
|
libXinerama
|
|
libXrandr
|
|
libXtst
|
|
libdatrie
|
|
libjack2
|
|
libpsl
|
|
libselinux
|
|
libsepol
|
|
libsysprof-capture
|
|
libthai
|
|
libuuid
|
|
libxkbcommon
|
|
lv2
|
|
pcre
|
|
pcre2
|
|
python3
|
|
sqlite
|
|
webkitgtk
|
|
];
|
|
|
|
# Link-time-optimization fails without these
|
|
cmakeFlags = [
|
|
"-DCMAKE_AR=${stdenv.cc.cc}/bin/gcc-ar"
|
|
"-DCMAKE_RANLIB=${stdenv.cc.cc}/bin/gcc-ranlib"
|
|
"-DCMAKE_NM=${stdenv.cc.cc}/bin/gcc-nm"
|
|
];
|
|
|
|
cmakeBuildType = "Release";
|
|
|
|
postPatch = "cd Plugin";
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/lib/lv2 $out/lib/vst3 $out/lib/clap $out/bin $out/share/doc/CHOWTapeModel/
|
|
cd CHOWTapeModel_artefacts/${cmakeBuildType}
|
|
cp -r LV2/CHOWTapeModel.lv2 $out/lib/lv2
|
|
cp -r VST3/CHOWTapeModel.vst3 $out/lib/vst3
|
|
cp -r CLAP/CHOWTapeModel.clap $out/lib/clap
|
|
cp Standalone/CHOWTapeModel $out/bin
|
|
cp ../../../../Manual/ChowTapeManual.pdf $out/share/doc/CHOWTapeModel/
|
|
'';
|
|
|
|
# JUCE dlopens these, make sure they are in rpath
|
|
# Otherwise, segfault will happen
|
|
NIX_LDFLAGS = (toString [
|
|
"-lX11"
|
|
"-lXext"
|
|
"-lXcursor"
|
|
"-lXinerama"
|
|
"-lXrandr"
|
|
]);
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jatinchowdhury18/AnalogTapeModel";
|
|
description =
|
|
"Physical modelling signal processing for analog tape recording. LV2, VST3, CLAP, and standalone";
|
|
license = with licenses; [ gpl3Only ];
|
|
maintainers = with maintainers; [ magnetophon ];
|
|
platforms = platforms.linux;
|
|
# error: 'vvtanh' was not declared in this scope; did you mean 'tanh'?
|
|
# error: no matching function for call to 'juce::dsp::SIMDRegister<double>::SIMDRegister(xsimd::simd_batch_traits<xsimd::batch<double, 2> >::batch_bool_type)'
|
|
broken = stdenv.isAarch64; # since 2021-12-27 on hydra (update to 2.10): https://hydra.nixos.org/build/162558991
|
|
};
|
|
}
|