mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01: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
1 changed files with 7 additions and 0 deletions
|
@ -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 a new issue