mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
BeatSaberModManager: wrap with xdg-utils
Using the OneClick functionality requires the app to have xdg-utils in its PATH. Fixes https://github.com/NixOS/nixpkgs/issues/234039
This commit is contained in:
parent
e10802309b
commit
bcbb670c15
@ -13,6 +13,8 @@
|
||||
libICE,
|
||||
libSM,
|
||||
fontconfig,
|
||||
|
||||
xdg-utils,
|
||||
}:
|
||||
|
||||
buildDotnetModule rec {
|
||||
@ -47,6 +49,11 @@ buildDotnetModule rec {
|
||||
fontconfig
|
||||
];
|
||||
|
||||
# Required for OneClick
|
||||
makeWrapperArgs = [
|
||||
''--prefix PATH : "${lib.makeBinPath [ xdg-utils ]}"''
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Yet another mod installer for Beat Saber, heavily inspired by ModAssistant";
|
||||
homepage = "https://github.com/affederaffe/BeatSaberModManager";
|
||||
|
Loading…
Reference in New Issue
Block a user