Skip to content

Commit f34aac0

Browse files
authored
patchance, raysession: fix pipewire compatibility (#353201)
2 parents badf075 + 157f77f commit f34aac0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkgs/applications/audio/patchance/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ buildPythonApplication rec {
2525
installFlags = [ "PREFIX=$(out)" ];
2626

2727
makeWrapperArgs = [
28-
"--prefix" "LD_LIBRARY_PATH" ":" (lib.makeLibraryPath [ libjack2 ])
28+
"--suffix" "LD_LIBRARY_PATH" ":" (lib.makeLibraryPath [ libjack2 ])
2929
];
3030

3131
preFixup = ''

pkgs/applications/audio/raysession/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ buildPythonApplication rec {
3232
installFlags = [ "PREFIX=$(out)" ];
3333

3434
makeWrapperArgs = [
35-
"--prefix" "LD_LIBRARY_PATH" ":" (lib.makeLibraryPath [ libjack2 ])
35+
"--suffix" "LD_LIBRARY_PATH" ":" (lib.makeLibraryPath [ libjack2 ])
3636
];
3737

3838
postFixup = ''

0 commit comments

Comments
 (0)