From d58c684ecfcfab0dfd2c4a499c3ffe76b92809f8 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Mon, 3 Apr 2023 16:04:07 +0200 Subject: [PATCH 1/4] faust: replace qt4 with qt5 --- pkgs/applications/audio/faust/faust2alqt.nix | 32 +++++++++++++++++-- pkgs/applications/audio/faust/faust2jaqt.nix | 33 ++++++++++++++++++-- pkgs/applications/audio/faust/faust2lv2.nix | 10 ++++-- pkgs/top-level/all-packages.nix | 6 ++-- 4 files changed, 69 insertions(+), 12 deletions(-) diff --git a/pkgs/applications/audio/faust/faust2alqt.nix b/pkgs/applications/audio/faust/faust2alqt.nix index 111d1c9e5574..1d86cc3f6c3f 100644 --- a/pkgs/applications/audio/faust/faust2alqt.nix +++ b/pkgs/applications/audio/faust/faust2alqt.nix @@ -1,15 +1,41 @@ { faust , alsa-lib -, qt4 +, qtbase +, writeText +, makeWrapper }: - +let + # Wrap the binary coming out of the the compilation script, so it knows QT_PLUGIN_PATH + wrapBinary = writeText "wrapBinary" '' + source ${makeWrapper}/nix-support/setup-hook + for p in $FILES; do + workpath=$PWD + cd -- "$(dirname "$p")" + binary=$(basename --suffix=.dsp "$p") + rm -f .$binary-wrapped + wrapProgram $binary --set QT_PLUGIN_PATH "${qtbase}/${qtbase.qtPluginPrefix}" + sed -i $binary -e 's@exec@cd "$(dirname "$(readlink -f "''${BASH_SOURCE[0]}")")" \&\& exec@g' + cd $workpath + done + ''; +in faust.wrapWithBuildEnv { baseName = "faust2alqt"; propagatedBuildInputs = [ alsa-lib - qt4 + qtbase ]; + dontWrapQtApps = true; + + preFixup = '' + for script in "$out"/bin/*; do + # append the wrapping code to the compilation script + cat ${wrapBinary} >> $script + # prevent the qmake error when running the script + sed -i "/QMAKE=/c\ QMAKE="${qtbase.dev}/bin/qmake"" $script + done + ''; } diff --git a/pkgs/applications/audio/faust/faust2jaqt.nix b/pkgs/applications/audio/faust/faust2jaqt.nix index 6bebd97ddd24..90498c9e3e3a 100644 --- a/pkgs/applications/audio/faust/faust2jaqt.nix +++ b/pkgs/applications/audio/faust/faust2jaqt.nix @@ -1,11 +1,27 @@ { faust , jack2 -, qt4 +, qtbase , libsndfile , alsa-lib +, writeText +, makeWrapper , which }: - +let + # Wrap the binary coming out of the the compilation script, so it knows QT_PLUGIN_PATH + wrapBinary = writeText "wrapBinary" '' + source ${makeWrapper}/nix-support/setup-hook + for p in $FILES; do + workpath=$PWD + cd -- "$(dirname "$p")" + binary=$(basename --suffix=.dsp "$p") + rm -f .$binary-wrapped + wrapProgram $binary --set QT_PLUGIN_PATH "${qtbase}/${qtbase.qtPluginPrefix}" + sed -i $binary -e 's@exec@cd "$(dirname "$(readlink -f "''${BASH_SOURCE[0]}")")" \&\& exec@g' + cd $workpath + done + ''; +in faust.wrapWithBuildEnv { baseName = "faust2jaqt"; @@ -17,10 +33,21 @@ faust.wrapWithBuildEnv { propagatedBuildInputs = [ jack2 - qt4 + qtbase libsndfile alsa-lib which ]; + + dontWrapQtApps = true; + + preFixup = '' + for script in "$out"/bin/*; do + # append the wrapping code to the compilation script + cat ${wrapBinary} >> $script + # prevent the qmake error when running the script + sed -i "/QMAKE=/c\ QMAKE="${qtbase.dev}/bin/qmake"" $script + done + ''; } diff --git a/pkgs/applications/audio/faust/faust2lv2.nix b/pkgs/applications/audio/faust/faust2lv2.nix index 51d956b14036..b7e9ffb488c4 100644 --- a/pkgs/applications/audio/faust/faust2lv2.nix +++ b/pkgs/applications/audio/faust/faust2lv2.nix @@ -1,15 +1,19 @@ { boost , faust , lv2 -, qt4 +, qtbase , which - }: faust.wrapWithBuildEnv { baseName = "faust2lv2"; - propagatedBuildInputs = [ boost lv2 qt4 which ]; + propagatedBuildInputs = [ boost lv2 qtbase ]; + dontWrapQtApps = true; + + preFixup = '' + sed -i "/QMAKE=/c\ QMAKE="${qtbase.dev}/bin/qmake"" "$out"/bin/faust2lv2; + ''; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 930a9c58276d..ca5be7eda6bb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -37850,7 +37850,7 @@ with pkgs; faust2 = callPackage ../applications/audio/faust/faust2.nix { }; - faust2alqt = callPackage ../applications/audio/faust/faust2alqt.nix { }; + faust2alqt = libsForQt5.callPackage ../applications/audio/faust/faust2alqt.nix { }; faust2alsa = callPackage ../applications/audio/faust/faust2alsa.nix { }; @@ -37862,11 +37862,11 @@ with pkgs; faust2jackrust = callPackage ../applications/audio/faust/faust2jackrust.nix { }; - faust2jaqt = callPackage ../applications/audio/faust/faust2jaqt.nix { }; + faust2jaqt = libsForQt5.callPackage ../applications/audio/faust/faust2jaqt.nix { }; faust2ladspa = callPackage ../applications/audio/faust/faust2ladspa.nix { }; - faust2lv2 = callPackage ../applications/audio/faust/faust2lv2.nix { }; + faust2lv2 = libsForQt5.callPackage ../applications/audio/faust/faust2lv2.nix { }; faustlive = callPackage ../applications/audio/faust/faustlive.nix { }; From bfded4004799c48f47e67ae2f4de387211966fd4 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Tue, 11 Apr 2023 00:41:12 +0200 Subject: [PATCH 2/4] fix faust2jaqt packages: copy both the binary and the wrapper dontWrapQtApps = true; --- .../audio/faustPhysicalModeling/default.nix | 2 ++ .../magnetophonDSP/CharacterCompressor/default.nix | 7 +++++-- .../audio/magnetophonDSP/CompBus/default.nix | 5 +++-- .../magnetophonDSP/ConstantDetuneChorus/default.nix | 6 +++++- .../audio/magnetophonDSP/LazyLimiter/default.nix | 6 +++++- .../audio/magnetophonDSP/MBdistortion/default.nix | 6 +++++- .../audio/magnetophonDSP/RhythmDelay/default.nix | 6 +++++- .../audio/magnetophonDSP/VoiceOfFaust/default.nix | 8 ++++---- .../audio/magnetophonDSP/faustCompressors/default.nix | 5 +++-- .../audio/magnetophonDSP/pluginUtils/default.nix | 8 ++++++-- .../audio/magnetophonDSP/shelfMultiBand/default.nix | 7 +++++-- pkgs/applications/audio/mooSpace/default.nix | 10 +++++++--- pkgs/applications/audio/tambura/default.nix | 6 +++++- 13 files changed, 60 insertions(+), 22 deletions(-) diff --git a/pkgs/applications/audio/faustPhysicalModeling/default.nix b/pkgs/applications/audio/faustPhysicalModeling/default.nix index bc28a2238b84..4e8192b1c5cb 100644 --- a/pkgs/applications/audio/faustPhysicalModeling/default.nix +++ b/pkgs/applications/audio/faustPhysicalModeling/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { buildInputs = [ faust2jaqt faust2lv2 ]; + dontWrapQtApps = true; + buildPhase = '' cd examples/physicalModeling diff --git a/pkgs/applications/audio/magnetophonDSP/CharacterCompressor/default.nix b/pkgs/applications/audio/magnetophonDSP/CharacterCompressor/default.nix index 400f268d439e..36ec1c38ca32 100644 --- a/pkgs/applications/audio/magnetophonDSP/CharacterCompressor/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/CharacterCompressor/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { buildInputs = [ faust2jaqt faust2lv2 ]; + dontWrapQtApps = true; + buildPhase = '' faust2jaqt -vec -time -t 99999 CharacterCompressor.dsp faust2jaqt -vec -time -t 99999 CharacterCompressorMono.dsp @@ -21,8 +23,9 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin - cp CharacterCompressor $out/bin/ - cp CharacterCompressorMono $out/bin/ + for f in $(find . -executable -type f); do + cp $f $out/bin/ + done mkdir -p $out/lib/lv2 cp -r CharacterCompressor.lv2/ $out/lib/lv2 cp -r CharacterCompressorMono.lv2/ $out/lib/lv2 diff --git a/pkgs/applications/audio/magnetophonDSP/CompBus/default.nix b/pkgs/applications/audio/magnetophonDSP/CompBus/default.nix index 0b80aef170a0..21f5f2206f07 100644 --- a/pkgs/applications/audio/magnetophonDSP/CompBus/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/CompBus/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { buildInputs = [ faust2jaqt faust2lv2 ]; + dontWrapQtApps = true; + buildPhase = '' for f in *.dsp; do @@ -28,8 +30,7 @@ stdenv.mkDerivation rec { mkdir -p $out/lib/lv2 mv *.lv2/ $out/lib/lv2 mkdir -p $out/bin - for f in $(find . -executable -type f); - do + for f in $(find . -executable -type f); do cp $f $out/bin/ done ''; diff --git a/pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix b/pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix index 56534309733d..a5cd713ea84d 100644 --- a/pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { buildInputs = [ faust2jaqt faust2lv2 ]; + dontWrapQtApps = true; + buildPhase = '' faust2jaqt -time -vec -t 99999 ConstantDetuneChorus.dsp faust2lv2 -time -vec -t 99999 -gui ConstantDetuneChorus.dsp @@ -19,7 +21,9 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin - cp ConstantDetuneChorus $out/bin/ + for f in $(find . -executable -type f); do + cp $f $out/bin/ + done mkdir -p $out/lib/lv2 cp -r ConstantDetuneChorus.lv2/ $out/lib/lv2 ''; diff --git a/pkgs/applications/audio/magnetophonDSP/LazyLimiter/default.nix b/pkgs/applications/audio/magnetophonDSP/LazyLimiter/default.nix index 4b1157de0b08..168687052dcd 100644 --- a/pkgs/applications/audio/magnetophonDSP/LazyLimiter/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/LazyLimiter/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { buildInputs = [ faust2jaqt faust2lv2 ]; + dontWrapQtApps = true; + buildPhase = '' faust2jaqt -vec -time -t 99999 LazyLimiter.dsp faust2lv2 -vec -time -t 99999 -gui LazyLimiter.dsp @@ -19,7 +21,9 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin - cp LazyLimiter $out/bin/ + for f in $(find . -executable -type f); do + cp $f $out/bin/ + done mkdir -p $out/lib/lv2 cp -r LazyLimiter.lv2/ $out/lib/lv2 ''; diff --git a/pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix b/pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix index 32f43eaed9cb..e8798424cc12 100644 --- a/pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix @@ -19,6 +19,8 @@ stdenv.mkDerivation rec { buildInputs = [ faust2jaqt faust2lv2 ]; + dontWrapQtApps = true; + buildPhase = '' faust2jaqt -time -vec -t 99999 MBdistortion.dsp faust2lv2 -time -vec -gui -t 99999 MBdistortion.dsp @@ -26,7 +28,9 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin - cp MBdistortion $out/bin/ + for f in $(find . -executable -type f); do + cp $f $out/bin/ + done mkdir -p $out/lib/lv2 cp -r MBdistortion.lv2/ $out/lib/lv2 ''; diff --git a/pkgs/applications/audio/magnetophonDSP/RhythmDelay/default.nix b/pkgs/applications/audio/magnetophonDSP/RhythmDelay/default.nix index fff4292cd761..fb55af1dcebd 100644 --- a/pkgs/applications/audio/magnetophonDSP/RhythmDelay/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/RhythmDelay/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { buildInputs = [ faust2jaqt faust2lv2 ]; + dontWrapQtApps = true; + buildPhase = '' faust2jaqt -time -vec -t 99999 RhythmDelay.dsp faust2lv2 -time -vec -t 99999 -gui RhythmDelay.dsp @@ -19,7 +21,9 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin - cp RhythmDelay $out/bin/ + for f in $(find . -executable -type f); do + cp $f $out/bin/ + done mkdir -p $out/lib/lv2 cp -r RhythmDelay.lv2/ $out/lib/lv2 ''; diff --git a/pkgs/applications/audio/magnetophonDSP/VoiceOfFaust/default.nix b/pkgs/applications/audio/magnetophonDSP/VoiceOfFaust/default.nix index 6bc8cff22615..2135af507b6a 100644 --- a/pkgs/applications/audio/magnetophonDSP/VoiceOfFaust/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/VoiceOfFaust/default.nix @@ -18,6 +18,8 @@ stdenv.mkDerivation rec { runtimeInputs = [ pitchTracker ]; + dontWrapQtApps = true; + patchPhase = '' sed -i "s@pd -nodac@${pitchTracker}/bin/pd -nodac@g" launchers/synthWrapper sed -i "s@../PureData/OscSendVoc.pd@$out/PureData/OscSendVoc.pd@g" launchers/pitchTracker @@ -32,10 +34,8 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin - for file in ./*; do - if test -x "$file" && test -f "$file"; then - cp "$file" "$out/bin" - fi + for f in $(find . -executable -type f); do + cp $f $out/bin/ done cp launchers/* $out/bin/ diff --git a/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix b/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix index fd55bae6fd61..a89b4e56485e 100644 --- a/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { buildInputs = [ faust2jaqt faust2lv2 ]; + dontWrapQtApps = true; + buildPhase = '' echo "hack out autoComp.dsp due to https://github.com/grame-cncm/faust/407/issues " rm autoComp.dsp @@ -33,8 +35,7 @@ stdenv.mkDerivation rec { mv *.lv2/ $out/lib/lv2 mkdir -p $out/bin rm newlib.sh - for f in $(find . -executable -type f); - do + for f in $(find . -executable -type f); do cp $f $out/bin/ done ''; diff --git a/pkgs/applications/audio/magnetophonDSP/pluginUtils/default.nix b/pkgs/applications/audio/magnetophonDSP/pluginUtils/default.nix index fd807dd42455..5230ed327e23 100644 --- a/pkgs/applications/audio/magnetophonDSP/pluginUtils/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/pluginUtils/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { buildInputs = [ faust2jaqt faust2lv2 ]; + dontWrapQtApps = true; + buildPhase = '' for f in *.dsp do @@ -28,8 +30,10 @@ stdenv.mkDerivation rec { mkdir -p $out/lib/lv2 mv *.lv2/ $out/lib/lv2 mkdir -p $out/bin - cp * $out/bin/ - ''; + for f in $(find . -executable -type f); do + cp $f $out/bin/ + done + ''; meta = { description = "Some simple utility lv2 plugins"; diff --git a/pkgs/applications/audio/magnetophonDSP/shelfMultiBand/default.nix b/pkgs/applications/audio/magnetophonDSP/shelfMultiBand/default.nix index 07d4402578ca..51f6baf70424 100644 --- a/pkgs/applications/audio/magnetophonDSP/shelfMultiBand/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/shelfMultiBand/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { buildInputs = [ faust2jaqt faust2lv2 ]; + dontWrapQtApps = true; + buildPhase = '' faust2jaqt -vec -double -time -t 99999 shelfMultiBand.dsp faust2jaqt -vec -double -time -t 99999 shelfMultiBandMono.dsp @@ -21,8 +23,9 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin - cp shelfMultiBand $out/bin/ - cp shelfMultiBandMono $out/bin/ + for f in $(find . -executable -type f); do + cp $f $out/bin/ + done mkdir -p $out/lib/lv2 cp -r shelfMultiBand.lv2/ $out/lib/lv2 cp -r shelfMultiBandMono.lv2/ $out/lib/lv2 diff --git a/pkgs/applications/audio/mooSpace/default.nix b/pkgs/applications/audio/mooSpace/default.nix index b7d7502d25ab..6d67d83f9875 100644 --- a/pkgs/applications/audio/mooSpace/default.nix +++ b/pkgs/applications/audio/mooSpace/default.nix @@ -14,6 +14,8 @@ stdenv.mkDerivation rec { patchPhase = "mv ${pname}_faust.dsp ${pname}.dsp"; + dontWrapQtApps = true; + buildPhase = '' faust2jaqt -time -vec -t 0 ${pname}.dsp faust2lv2 -time -vec -t 0 -gui ${pname}.dsp @@ -21,9 +23,11 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin - cp ${pname} $out/bin/ - mkdir -p $out/lib/lv2 - cp -r ${pname}.lv2 $out/lib/lv2 + for f in $(find . -executable -type f); do + cp $f $out/bin/ + done + mkdir -p $out/lib/lv2 + cp -r ${pname}.lv2 $out/lib/lv2 ''; meta = { diff --git a/pkgs/applications/audio/tambura/default.nix b/pkgs/applications/audio/tambura/default.nix index b1a6513c7f73..e1d62754c449 100644 --- a/pkgs/applications/audio/tambura/default.nix +++ b/pkgs/applications/audio/tambura/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { buildInputs = [ faust2jaqt faust2lv2 ]; + dontWrapQtApps = true; + buildPhase = '' faust2jaqt -vec -time -t 99999 ${pname}.dsp faust2lv2 -vec -time -gui -t 99999 ${pname}.dsp @@ -19,7 +21,9 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin - cp ${pname} $out/bin/ + for f in $(find . -executable -type f); do + cp $f $out/bin/ + done mkdir -p $out/lib/lv2 cp -r ${pname}.lv2/ $out/lib/lv2 ''; From d2897cfde88f13f5c81e5865ea104cdf24adb430 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Tue, 11 Apr 2023 00:42:32 +0200 Subject: [PATCH 3/4] faustStk: remove duplicate --- pkgs/applications/audio/faustStk/default.nix | 40 -------------------- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 - 3 files changed, 1 insertion(+), 42 deletions(-) delete mode 100644 pkgs/applications/audio/faustStk/default.nix diff --git a/pkgs/applications/audio/faustStk/default.nix b/pkgs/applications/audio/faustStk/default.nix deleted file mode 100644 index c41ee8d59769..000000000000 --- a/pkgs/applications/audio/faustStk/default.nix +++ /dev/null @@ -1,40 +0,0 @@ -{ stdenv, lib, fetchFromGitHub, faust2jaqt, faust2lv2 }: - -stdenv.mkDerivation rec { - pname = "faustPhhysicalModeling"; - version = "2.20.2"; - - src = fetchFromGitHub { - owner = "grame-cncm"; - repo = "faust"; - rev = version; - sha256 = "1mm93ba26b7q69hvabzalg30dh8pl858nj4m2bb57pznnp09lq9a"; - }; - - buildInputs = [ faust2jaqt faust2lv2 ]; - - buildPhase = '' - cd examples/physicalModeling/faust-stk - - for f in *.dsp; do - faust2jaqt -time -vec -midi -nvoices 8 -t 99999 $f - faust2lv2 -time -vec -double -gui -nvoices 32 -t 99999 $f - done - ''; - - installPhase = '' - mkdir -p $out/lib/lv2 $out/bin - mv *.lv2/ $out/lib/lv2 - for f in $(find . -executable -type f); do - cp $f $out/bin/ - done - ''; - meta = with lib; { - broken = (stdenv.isLinux && stdenv.isAarch64); - description = "The physical modeling instruments included with faust, compiled as jack standalone and lv2 instruments"; - homepage = "https://ccrma.stanford.edu/~rmichon/faustSTK/"; - license = licenses.stk; - platforms = platforms.linux; - maintainers = with maintainers; [ magnetophon ]; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 367001940416..ab871c8b06d2 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -446,6 +446,7 @@ mapAliases ({ ### F ### facette = throw "facette has been removed"; # Added 2020-01-06 + faustStk = faustPhysicalModeling; # Added 2023-05-16 fast-neural-doodle = throw "fast-neural-doodle has been removed, as the upstream project has been abandoned"; # Added 2020-03-28 fastnlo = fastnlo_toolkit; # Added 2021-04-24 fbreader = throw "fbreader has been removed, as the upstream project has been archived"; # Added 2022-05-26 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ca5be7eda6bb..01b3e3ae6d49 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -37872,8 +37872,6 @@ with pkgs; faustPhysicalModeling = callPackage ../applications/audio/faustPhysicalModeling { }; - faustStk = callPackage ../applications/audio/faustStk { }; - flockit = callPackage ../tools/backup/flockit { }; fahclient = callPackage ../applications/science/misc/foldingathome/client.nix {}; From 7735e9b13843365cbc57e78e7d9e30a62de27f49 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Tue, 11 Apr 2023 00:49:04 +0200 Subject: [PATCH 4/4] constant-detune-chorus: mark broken compiling it gives the error: ERROR3 : n is NaN in an Interval --- .../audio/magnetophonDSP/ConstantDetuneChorus/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix b/pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix index a5cd713ea84d..a8fecfedb5c3 100644 --- a/pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix @@ -33,5 +33,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/magnetophon/constant-detune-chorus"; license = lib.licenses.gpl3; maintainers = [ lib.maintainers.magnetophon ]; + # ERROR3 : n is NaN in an Interval + broken = true; }; }