about summary refs log tree commit diff
path: root/pkgs/applications/audio/magnetophonDSP/MBdistortion
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/MBdistortion
parentd58c684ecfcfab0dfd2c4a499c3ffe76b92809f8 (diff)
fix faust2jaqt packages:
copy both the binary and the wrapper
dontWrapQtApps = true;
Diffstat (limited to 'pkgs/applications/audio/magnetophonDSP/MBdistortion')
-rw-r--r--pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix b/pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix
index 32f43eaed9cb7..e8798424cc12f 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
   '';