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/faustCompressors/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pkgs/applications/audio/magnetophonDSP/faustCompressors') 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 ''; -- cgit 1.4.1