Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 28 lines 331 B view raw
1{ 2 bash, 3 boost, 4 faust, 5 lv2, 6 qt5, 7}: 8 9faust.wrapWithBuildEnv { 10 11 baseName = "faust2lv2"; 12 13 buildInputs = [ 14 bash 15 ]; 16 17 propagatedBuildInputs = [ 18 boost 19 lv2 20 qt5.qtbase 21 ]; 22 23 dontWrapQtApps = true; 24 25 preFixup = '' 26 sed -i "/QMAKE=/c\ QMAKE="${qt5.qtbase.dev}/bin/qmake"" "$out"/bin/faust2lv2; 27 ''; 28}