about summary refs log tree commit diff
path: root/pkgs/applications/audio/magnetophonDSP/faustCompressors
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2023-04-11 00:41:12 +0200
committerBart Brouns <bart@magnetophon.nl>2023-05-18 15:22:02 +0200
commitbfded4004799c48f47e67ae2f4de387211966fd4 (patch)
treea5653eaccd461132013c1dae2611defd8113d657 /pkgs/applications/audio/magnetophonDSP/faustCompressors
parentd58c684ecfcfab0dfd2c4a499c3ffe76b92809f8 (diff)
fix faust2jaqt packages:
copy both the binary and the wrapper
dontWrapQtApps = true;
Diffstat (limited to 'pkgs/applications/audio/magnetophonDSP/faustCompressors')
-rw-r--r--pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix b/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix
index fd55bae6fd61f..a89b4e56485e2 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
   '';