From bfded4004799c48f47e67ae2f4de387211966fd4 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Tue, 11 Apr 2023 00:41:12 +0200 Subject: fix faust2jaqt packages: copy both the binary and the wrapper dontWrapQtApps = true; --- pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'pkgs/applications/audio/magnetophonDSP/MBdistortion') 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 ''; -- cgit 1.4.1