faust2sc: remove workaround

Before faust 2.59.6 faust2sc had a bug, now headers can be provided from the path of the source package.

olaf 4830b54e 6b942b50

+1 -7
+1 -7
pkgs/applications/audio/faust/faust2sc.nix
··· 22 ''; 23 24 postFixup = '' 25 - # export parts of the build environment 26 - mkdir "$out"/include 27 - # until pr #887 is merged and released in faust we need to link the header folders 28 - ln -s "${supercollider}"/include/SuperCollider/plugin_interface "$out"/include/plugin_interface 29 - ln -s "${supercollider}"/include/SuperCollider/common "$out"/include/common 30 - ln -s "${supercollider}"/include/SuperCollider/server "$out"/include/server 31 wrapProgram "$out"/bin/${baseName} \ 32 --append-flags "--import-dir ${faust}/share/faust" \ 33 --append-flags "--architecture-dir ${faust}/share/faust" \ 34 --append-flags "--architecture-dir ${faust}/include" \ 35 - --append-flags "-p $out" \ 36 --prefix PATH : "$PATH" 37 ''; 38 })
··· 22 ''; 23 24 postFixup = '' 25 wrapProgram "$out"/bin/${baseName} \ 26 --append-flags "--import-dir ${faust}/share/faust" \ 27 --append-flags "--architecture-dir ${faust}/share/faust" \ 28 --append-flags "--architecture-dir ${faust}/include" \ 29 + --append-flags "-p ${supercollider}" \ 30 --prefix PATH : "$PATH" 31 ''; 32 })