Skip to content

Commit 4c43880

Browse files
authored
bitwig-studio: fix MIDI input (NixOS#361845)
2 parents 79a7ad1 + 1a78278 commit 4c43880

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

pkgs/applications/audio/bitwig-studio/bitwig-wrapper.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,12 @@ stdenv.mkDerivation {
3030
chmod -R u+w $TMPDIR/VampTransforms
3131
3232
echo "Starting Bitwig Studio in Bubblewrap Environment"
33-
${bubblewrap}/bin/bwrap --bind / / --bind $TMPDIR/VampTransforms ${bitwig-studio-unwrapped}/libexec/resources/VampTransforms ${bitwig-studio-unwrapped}/bin/bitwig-studio || true
33+
${bubblewrap}/bin/bwrap \
34+
--bind / / \
35+
--bind $TMPDIR/VampTransforms ${bitwig-studio-unwrapped}/libexec/resources/VampTransforms \
36+
--dev-bind /dev /dev \
37+
${bitwig-studio-unwrapped}/bin/bitwig-studio \
38+
|| true
3439
3540
echo "Bitwig exited, removing temporary directory"
3641
rm -rf $TMPDIR

0 commit comments

Comments
 (0)