Merge pull request #34300 from magnetophon/magnetophonDSP

magnetophonDSP: remove workarounds for:

authored by adisbladis and committed by GitHub 48474a71 4cc3ee20

+1 -12
-1
pkgs/applications/audio/magnetophonDSP/CharacterCompressor/default.nix
··· 15 15 buildPhase = '' 16 16 faust2jaqt -vec -time -t 99999 CharacterCompressor.dsp 17 17 faust2jaqt -vec -time -t 99999 CharacterCompressorMono.dsp 18 - sed -i "s|\[ *scale *: *log *\]||g ; s|\btgroup\b|hgroup|g" "lib/CharacterCompressor.lib" 19 18 faust2lv2 -vec -time -gui -t 99999 CharacterCompressor.dsp 20 19 faust2lv2 -vec -time -gui -t 99999 CharacterCompressorMono.dsp 21 20 '';
-2
pkgs/applications/audio/magnetophonDSP/CompBus/default.nix
··· 18 18 faust2jaqt -time -vec -double -t 99999 $f 19 19 done 20 20 21 - sed -i "s|\[ *scale *: *log *\]||g ; s|\btgroup\b|hgroup|g" "CompBus.lib" 22 - 23 21 for f in *.dsp; 24 22 do 25 23 faust2lv2 -time -vec -double -gui -t 99999 $f
-1
pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix
··· 14 14 15 15 buildPhase = '' 16 16 faust2jaqt -time -vec -t 99999 ConstantDetuneChorus.dsp 17 - sed -i "s|\[ *scale *: *log *\]||g ; s|\btgroup\b|hgroup|g" "ConstantDetuneChorus.dsp" 18 17 faust2lv2 -time -vec -t 99999 -gui ConstantDetuneChorus.dsp 19 18 ''; 20 19
-1
pkgs/applications/audio/magnetophonDSP/LazyLimiter/default.nix
··· 14 14 15 15 buildPhase = '' 16 16 faust2jaqt -vec -time -t 99999 LazyLimiter.dsp 17 - sed -i "s|\[ *scale *: *log *\]||g ; s|\btgroup\b|hgroup|g" "GUI.lib" 18 17 faust2lv2 -vec -time -t 99999 -gui LazyLimiter.dsp 19 18 ''; 20 19
-1
pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix
··· 14 14 15 15 buildPhase = '' 16 16 faust2jaqt -time -vec -t 99999 MBdistortion.dsp 17 - sed -i "s|\[ *scale *: *log *\]||g ; s|\btgroup\b|hgroup|g" "MBdistortion.dsp" 18 17 faust2lv2 -time -vec -gui -t 99999 MBdistortion.dsp 19 18 ''; 20 19
-1
pkgs/applications/audio/magnetophonDSP/RhythmDelay/default.nix
··· 14 14 15 15 buildPhase = '' 16 16 faust2jaqt -time -vec -t 99999 RhythmDelay.dsp 17 - sed -i "s|\[ *scale *: *log *\]||g ; s|\btgroup\b|hgroup|g" "RhythmDelay.dsp" 18 17 faust2lv2 -time -vec -t 99999 -gui RhythmDelay.dsp 19 18 ''; 20 19
+1 -3
pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix
··· 19 19 faust2jaqt -time -double -t 99999 $f 20 20 done 21 21 22 - sed -i "s|\[ *scale *: *log *\]||g ; s|\btgroup\b|hgroup|g" "compressors.lib" 23 - 24 22 for f in *.dsp; 25 23 do 26 - echo "compiling plugin from" $f 24 + echo "Compiling plugin from" $f 27 25 faust2lv2 -time -double -gui -t 99999 $f 28 26 done 29 27 '';
-1
pkgs/applications/audio/magnetophonDSP/pluginUtils/default.nix
··· 17 17 do 18 18 echo "Building jack standalone for $f" 19 19 faust2jaqt -vec -time -t 99999 "$f" 20 - sed -i "s|\[ *scale *: *log *\]||g ; s|\btgroup\b|hgroup|g" "$f" 21 20 echo "Building lv2 for $f" 22 21 faust2lv2 -vec -time -gui -t 99999 "$f" 23 22 done
-1
pkgs/applications/audio/magnetophonDSP/shelfMultiBand/default.nix
··· 15 15 buildPhase = '' 16 16 faust2jaqt -vec -double -time -t 99999 shelfMultiBand.dsp 17 17 faust2jaqt -vec -double -time -t 99999 shelfMultiBandMono.dsp 18 - sed -i "s|\[ *scale *: *log *\]||g ; s|\btgroup\b|hgroup|g" "shelfMultiBand.lib" 19 18 faust2lv2 -vec -double -time -gui -t 99999 shelfMultiBandMono.dsp 20 19 faust2lv2 -vec -double -time -gui -t 99999 shelfMultiBand.dsp 21 20 '';