8 stdenv.mkDerivation rec {
12 src = fetchFromGitHub {
13 owner = "magnetophon";
16 sha256 = "1hnr5sp7k6ypf4ks61lnyqx44dkv35yllf3a3xcbrw7yqzagwr1c";
24 dontWrapQtApps = true;
29 echo "Building jack standalone for $f"
30 faust2jaqt -vec -time -t 99999 "$f"
31 echo "Building lv2 for $f"
32 faust2lv2 -vec -time -gui -t 99999 "$f"
40 mv *.lv2/ $out/lib/lv2
42 for f in $(find . -executable -type f); do
48 description = "Some simple utility lv2 plugins";
49 homepage = "https://github.com/magnetophon/pluginUtils";
50 license = lib.licenses.gpl3;
51 maintainers = [ lib.maintainers.magnetophon ];